Changeset 1550 in vbox
- Timestamp:
- Mar 17, 2007 12:36:52 AM (18 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxGuest.h
r669 r1550 295 295 296 296 /** guest information structure */ 297 typedef struct 297 typedef struct VBoxGuestInfo 298 298 { 299 299 /** The VMMDev interface version expected by additions. */ -
trunk/include/VBox/pdm.h
r1487 r1550 30 30 #include <VBox/err.h> 31 31 #include <VBox/pci.h> 32 #include <VBox/VBoxGuest.h>33 32 34 33 #include <iprt/critsect.h> … … 1659 1658 } PDMIVMMDEVPORT; 1660 1659 1661 /** Forward declaration of video accelerator command memory. */1660 /** Forward declaration of the video accelerator command memory. */ 1662 1661 struct _VBVAMEMORY; 1662 /** Forward declaration of the guest information structure. */ 1663 struct VBoxGuestInfo; 1663 1664 /** Pointer to video accelerator command memory. */ 1664 1665 typedef struct _VBVAMEMORY *PVBVAMEMORY; … … 1680 1681 * @thread The emulation thread. 1681 1682 */ 1682 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestVersion,(PPDMIVMMDEVCONNECTOR pInterface, VBoxGuestInfo *pGuestInfo));1683 DECLR3CALLBACKMEMBER(void, pfnUpdateGuestVersion,(PPDMIVMMDEVCONNECTOR pInterface, struct VBoxGuestInfo *pGuestInfo)); 1683 1684 1684 1685 /** -
trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.cpp
r412 r1550 34 34 #include <iprt/thread.h> 35 35 #include <VBox/pdm.h> 36 #include <VBox/VBoxGuest.h> 36 37 #include <VBox/cfgm.h> 37 38 #include <VBox/err.h> -
trunk/src/VBox/Frontends/VBoxBFE/DisplayImpl.h
r1 r1550 28 28 29 29 #include "Framebuffer.h" 30 struct _VBVACMDHDR; 30 31 31 32 class VMDisplay … … 41 42 void handleDisplayUpdate (int x, int y, int cx, int cy); 42 43 43 int VideoAccelEnable (bool fEnable, VBVAMEMORY *pVbvaMemory);44 int VideoAccelEnable (bool fEnable, struct _VBVAMEMORY *pVbvaMemory); 44 45 void VideoAccelFlush (void); 45 46 bool VideoAccelAllowed (void); … … 84 85 RTSEMEVENTMULTI mUpdateSem; 85 86 86 VBVAMEMORY *mpVbvaMemory;87 struct _VBVAMEMORY *mpVbvaMemory; 87 88 bool mfVideoAccelEnabled; 88 89 89 VBVAMEMORY *mpPendingVbvaMemory;90 struct _VBVAMEMORY *mpPendingVbvaMemory; 90 91 bool mfPendingVideoAccelEnable; 91 92 bool mfMachineRunning; … … 94 95 uint32_t mcbVbvaPartial; 95 96 96 bool vbvaFetchCmd ( VBVACMDHDR **ppHdr, uint32_t *pcbCmd);97 void vbvaReleaseCmd ( VBVACMDHDR *pHdr, int32_t cbCmd);97 bool vbvaFetchCmd (struct _VBVACMDHDR **ppHdr, uint32_t *pcbCmd); 98 void vbvaReleaseCmd (struct _VBVACMDHDR *pHdr, int32_t cbCmd); 98 99 }; 99 100 -
trunk/src/VBox/Frontends/VBoxBFE/VMMDevInterface.cpp
r1 r1550 30 30 #include <VBox/pdm.h> 31 31 #include <VBox/VBoxDev.h> 32 #include <VBox/VBoxGuest.h> 32 33 #include <VBox/cfgm.h> 33 34 #include <VBox/err.h>
Note:
See TracChangeset
for help on using the changeset viewer.