Changeset 25966 in vbox for trunk/src/VBox/Main/include
- Timestamp:
- Jan 22, 2010 11:15:43 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56818
- Location:
- trunk/src/VBox/Main/include
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/AudioSnifferInterface.h
r22277 r25966 1 1 /** @file 2 *3 2 * VirtualBox Driver interface to Audio Sniffer device 4 3 */ … … 44 43 45 44 private: 46 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);45 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID); 47 46 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags); 48 47 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns); … … 51 50 }; 52 51 53 #endif /* ____H_AUDIOSNIFFERINTERFACE */52 #endif /* !____H_AUDIOSNIFFERINTERFACE */ 54 53 /* vi: set tabstop=4 shiftwidth=4 expandtab: */ -
trunk/src/VBox/Main/include/ConsoleImpl.h
r25901 r25966 1 1 /* $Id$ */ 2 3 2 /** @file 4 *5 3 * VBox Console COM Class definition 6 4 */ … … 493 491 static DECLCALLBACK (int) powerDownThread (RTTHREAD Thread, void *pvUser); 494 492 495 static DECLCALLBACK(void *) drvStatus_QueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);493 static DECLCALLBACK(void *) drvStatus_QueryInterface(PPDMIBASE pInterface, const char *pszIID); 496 494 static DECLCALLBACK(void) drvStatus_UnitChanged(PPDMILEDCONNECTORS pInterface, unsigned iLUN); 497 495 static DECLCALLBACK(void) drvStatus_Destruct(PPDMDRVINS pDrvIns); -
trunk/src/VBox/Main/include/DisplayImpl.h
r25901 r25966 1 1 /* $Id$ */ 2 3 2 /** @file 4 *5 3 * VirtualBox COM class implementation 6 4 */ … … 272 270 void updateDisplayData (bool aCheckParams = false); 273 271 274 static DECLCALLBACK(int) changeFramebuffer (Display *that, IFramebuffer *aFB, 275 unsigned uScreenId); 276 277 static DECLCALLBACK(void*) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface); 272 static DECLCALLBACK(int) changeFramebuffer(Display *that, IFramebuffer *aFB, unsigned uScreenId); 273 274 static DECLCALLBACK(void*) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID); 278 275 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags); 279 276 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns); … … 288 285 289 286 #ifdef VBOX_WITH_VIDEOHWACCEL 290 static DECLCALLBACK(void) displayVHWACommandProcess(PPDMIDISPLAYCONNECTOR pInterface, PVBOXVHWACMD pCommand);287 static DECLCALLBACK(void) displayVHWACommandProcess(PPDMIDISPLAYCONNECTOR pInterface, PVBOXVHWACMD pCommand); 291 288 #endif 292 289 293 290 #ifdef VBOX_WITH_HGSMI 294 static DECLCALLBACK(int) displayVBVAEnable(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, PVBVAHOSTFLAGS pHostFlags);295 static DECLCALLBACK(void) displayVBVADisable(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId);296 static DECLCALLBACK(void) displayVBVAUpdateBegin(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId);297 static DECLCALLBACK(void) displayVBVAUpdateProcess(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, const PVBVACMDHDR pCmd, size_t cbCmd);298 static DECLCALLBACK(void) displayVBVAUpdateEnd(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, int32_t x, int32_t y, uint32_t cx, uint32_t cy);299 static DECLCALLBACK(int) displayVBVAResize(PPDMIDISPLAYCONNECTOR pInterface, const PVBVAINFOVIEW pView, const PVBVAINFOSCREEN pScreen, void *pvVRAM);300 static DECLCALLBACK(int) displayVBVAMousePointerShape(PPDMIDISPLAYCONNECTOR pInterface, bool fVisible, bool fAlpha, uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy, const void *pvShape);291 static DECLCALLBACK(int) displayVBVAEnable(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, PVBVAHOSTFLAGS pHostFlags); 292 static DECLCALLBACK(void) displayVBVADisable(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId); 293 static DECLCALLBACK(void) displayVBVAUpdateBegin(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId); 294 static DECLCALLBACK(void) displayVBVAUpdateProcess(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, const PVBVACMDHDR pCmd, size_t cbCmd); 295 static DECLCALLBACK(void) displayVBVAUpdateEnd(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, int32_t x, int32_t y, uint32_t cx, uint32_t cy); 296 static DECLCALLBACK(int) displayVBVAResize(PPDMIDISPLAYCONNECTOR pInterface, const PVBVAINFOVIEW pView, const PVBVAINFOSCREEN pScreen, void *pvVRAM); 297 static DECLCALLBACK(int) displayVBVAMousePointerShape(PPDMIDISPLAYCONNECTOR pInterface, bool fVisible, bool fAlpha, uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy, const void *pvShape); 301 298 #endif 302 299 303 300 304 static DECLCALLBACK(void) 305 static DECLCALLBACK(int) 306 static DECLCALLBACK(void) 307 static DECLCALLBACK(int) 301 static DECLCALLBACK(void) displaySSMSaveScreenshot(PSSMHANDLE pSSM, void *pvUser); 302 static DECLCALLBACK(int) displaySSMLoadScreenshot(PSSMHANDLE pSSM, void *pvUser, uint32_t uVersion, uint32_t uPass); 303 static DECLCALLBACK(void) displaySSMSave(PSSMHANDLE pSSM, void *pvUser); 304 static DECLCALLBACK(int) displaySSMLoad(PSSMHANDLE pSSM, void *pvUser, uint32_t uVersion, uint32_t uPass); 308 305 309 306 const ComObjPtr<Console, ComWeakRef> mParent; … … 349 346 RTCRITSECT mVBVALock; 350 347 volatile uint32_t mfu32PendingVideoAccelDisable; 351 348 352 349 int vbvaLock(void); 353 350 void vbvaUnlock(void); -
trunk/src/VBox/Main/include/KeyboardImpl.h
r25893 r25966 1 1 /* $Id$ */ 2 3 2 /** @file 4 *5 3 * VirtualBox COM class implementation 6 4 */ … … 94 92 private: 95 93 96 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);94 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID); 97 95 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags); 98 96 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns); -
trunk/src/VBox/Main/include/MouseImpl.h
r23223 r25966 1 1 /* $Id$ */ 2 3 2 /** @file 4 *5 3 * VirtualBox COM class implementation 6 4 */ … … 94 92 private: 95 93 96 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);94 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID); 97 95 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags); 98 96 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns); … … 107 105 }; 108 106 109 #endif // ____H_MOUSEIMPL107 #endif // !____H_MOUSEIMPL 110 108 /* vi: set tabstop=4 shiftwidth=4 expandtab: */ -
trunk/src/VBox/Main/include/VMMDev.h
r22277 r25966 1 1 /** @file 2 *3 2 * VirtualBox Driver interface to VMM device 4 3 */ … … 60 59 61 60 private: 62 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, PDMINTERFACE enmInterface);61 static DECLCALLBACK(void *) drvQueryInterface(PPDMIBASE pInterface, const char *pszIID); 63 62 static DECLCALLBACK(int) drvConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfgHandle, uint32_t fFlags); 64 63 static DECLCALLBACK(void) drvDestruct(PPDMDRVINS pDrvIns);
Note:
See TracChangeset
for help on using the changeset viewer.