Removed public headers, Input.cpp is in kits/interface/ already
Filled default hooks in Device Filter Method git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8501 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -60,9 +60,7 @@ BInputServerDevice::~BInputServerDevice()
|
||||
status_t
|
||||
BInputServerDevice::InitCheck()
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
||||
@@ -73,9 +71,7 @@ BInputServerDevice::InitCheck()
|
||||
status_t
|
||||
BInputServerDevice::SystemShuttingDown()
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
||||
@@ -87,9 +83,7 @@ status_t
|
||||
BInputServerDevice::Start(const char *device,
|
||||
void *cookie)
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
||||
@@ -101,9 +95,7 @@ status_t
|
||||
BInputServerDevice::Stop(const char *device,
|
||||
void *cookie)
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
||||
@@ -117,9 +109,7 @@ BInputServerDevice::Control(const char *device,
|
||||
uint32 code,
|
||||
BMessage *message)
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
return B_OK;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user