Changeset 25971 in vbox for trunk/src/VBox/Frontends/VBoxBFE/KeyboardImpl.cpp
- Timestamp:
- Jan 22, 2010 12:54:19 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxBFE/KeyboardImpl.cpp
r25966 r25971 166 166 if (RTUuidCompare2Strs(pszIID, PDMIBASE_IID) == 0) 167 167 return &pDrvIns->IBase; 168 if (RTUuidCompare2Strs(pszIID, PDMI NTERFACE_KEYBOARD_CONNECTOR) == 0)168 if (RTUuidCompare2Strs(pszIID, PDMIKEYBOARDCONNECTOR_IID) == 0) 169 169 return &pDrv->Connector; 170 170 return NULL; … … 226 226 * Get the IKeyboardPort interface of the above driver/device. 227 227 */ 228 pData->pUpPort = (PPDMIKEYBOARDPORT)pDrvIns->pUpBase->pfnQueryInterface(pDrvIns->pUpBase, PDMINTERFACE_KEYBOARD_PORT);228 pData->pUpPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIKEYBOARDPORT); 229 229 if (!pData->pUpPort) 230 230 {
Note:
See TracChangeset
for help on using the changeset viewer.