Changeset 28909 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Apr 29, 2010 4:34:17 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60857
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/KeyboardImpl.h
r28800 r28909 23 23 24 24 #include <VBox/pdmdrv.h> 25 26 /** Limit of simultaneously attached devices (just USB and/or PS/2). */ 27 enum { KEYBOARD_MAX_DEVICES = 2 }; 25 28 26 29 /** Simple keyboard event class. */ … … 89 92 90 93 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID); 94 static DECLCALLBACK(void) keyboardSetActive(PPDMIKEYBOARDCONNECTOR pInterface, bool fActive); 91 95 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags); 92 96 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns); 93 97 94 98 Console * const mParent; 95 /** Pointer to the associated keyboard driver . */96 struct DRVMAINKEYBOARD *mpDrv ;99 /** Pointer to the associated keyboard driver(s). */ 100 struct DRVMAINKEYBOARD *mpDrv[KEYBOARD_MAX_DEVICES]; 97 101 /** Pointer to the device instance for the VMM Device. */ 98 102 PPDMDEVINS mpVMMDev;
Note:
See TracChangeset
for help on using the changeset viewer.