It is accomplished ...
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,201 @@
|
||||
/***********************************************************************
|
||||
* AUTHOR: nobody <baron>
|
||||
* FILE: InputServerDevice.cpp
|
||||
* DATE: Sun Dec 16 15:57:43 2001
|
||||
* DESCR:
|
||||
***********************************************************************/
|
||||
#include "InputServerDevice.h"
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::BInputServerDevice()
|
||||
* Descr:
|
||||
*/
|
||||
BInputServerDevice::BInputServerDevice()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::~BInputServerDevice()
|
||||
* Descr:
|
||||
*/
|
||||
BInputServerDevice::~BInputServerDevice()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::InitCheck()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BInputServerDevice::InitCheck()
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::SystemShuttingDown()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BInputServerDevice::SystemShuttingDown()
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::Start()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BInputServerDevice::Start(const char *device,
|
||||
void *cookie)
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::Stop()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BInputServerDevice::Stop(const char *device,
|
||||
void *cookie)
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::Control()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BInputServerDevice::Control(const char *device,
|
||||
void *cookie,
|
||||
uint32 code,
|
||||
BMessage *message)
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::RegisterDevices()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BInputServerDevice::RegisterDevices(input_device_ref **devices)
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::UnregisterDevices()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BInputServerDevice::UnregisterDevices(input_device_ref **devices)
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::EnqueueMessage()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BInputServerDevice::EnqueueMessage(BMessage *message)
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::StartMonitoringDevice()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BInputServerDevice::StartMonitoringDevice(const char *device)
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::StopMonitoringDevice()
|
||||
* Descr:
|
||||
*/
|
||||
status_t
|
||||
BInputServerDevice::StopMonitoringDevice(const char *device)
|
||||
{
|
||||
status_t dummy;
|
||||
|
||||
return dummy;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::_ReservedInputServerDevice1()
|
||||
* Descr:
|
||||
*/
|
||||
void
|
||||
BInputServerDevice::_ReservedInputServerDevice1()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::_ReservedInputServerDevice2()
|
||||
* Descr:
|
||||
*/
|
||||
void
|
||||
BInputServerDevice::_ReservedInputServerDevice2()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::_ReservedInputServerDevice3()
|
||||
* Descr:
|
||||
*/
|
||||
void
|
||||
BInputServerDevice::_ReservedInputServerDevice3()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* Method: BInputServerDevice::_ReservedInputServerDevice4()
|
||||
* Descr:
|
||||
*/
|
||||
void
|
||||
BInputServerDevice::_ReservedInputServerDevice4()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user