Fix broken build due to forgotten definition of the reserved virtual functions.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@24847 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2008-04-06 22:00:19 +00:00
parent 18d3e65ebd
commit 31f63eb4da
2 changed files with 16 additions and 0 deletions

View File

@ -369,3 +369,11 @@ BUSBDevice::ControlTransfer(uint8 requestType, uint8 request, uint16 value,
return command.control.length; return command.control.length;
} }
// definition of reserved virtual functions
void BUSBDevice::_ReservedUSBDevice1() {};
void BUSBDevice::_ReservedUSBDevice2() {};
void BUSBDevice::_ReservedUSBDevice3() {};
void BUSBDevice::_ReservedUSBDevice4() {};
void BUSBDevice::_ReservedUSBDevice5() {};

View File

@ -267,3 +267,11 @@ BUSBRoster::Stop()
((RosterLooper *)fLooper)->Stop(); ((RosterLooper *)fLooper)->Stop();
fLooper = NULL; fLooper = NULL;
} }
// definition of reserved virtual functions
void BUSBRoster::_ReservedUSBRoster1() {};
void BUSBRoster::_ReservedUSBRoster2() {};
void BUSBRoster::_ReservedUSBRoster3() {};
void BUSBRoster::_ReservedUSBRoster4() {};
void BUSBRoster::_ReservedUSBRoster5() {};