Changeset 63606 in vbox for trunk/include/VBox/vmm
- Timestamp:
- Aug 22, 2016 10:32:13 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r63241 r63606 714 714 715 715 716 typedef struct VBOXVHWACMD *PVBOXVHWACMD; /**< @todo r=bird: A line what it is to make doxygen happy. */ 716 /** Pointer to a 2D graphics acceleration command. */ 717 typedef struct VBOXVHWACMD *PVBOXVHWACMD; 718 /** Pointer to a VBVA command header. */ 717 719 typedef struct VBVACMDHDR *PVBVACMDHDR; 720 /** Pointer to a const VBVA command header. */ 721 typedef const struct VBVACMDHDR *PCVBVACMDHDR; 722 /** Pointer to a VBVA screen information. */ 718 723 typedef struct VBVAINFOSCREEN *PVBVAINFOSCREEN; 724 /** Pointer to a const VBVA screen information. */ 725 typedef const struct VBVAINFOSCREEN *PCVBVAINFOSCREEN; 726 /** Pointer to a VBVA guest VRAM area information. */ 719 727 typedef struct VBVAINFOVIEW *PVBVAINFOVIEW; 728 /** Pointer to a const VBVA guest VRAM area information. */ 729 typedef const struct VBVAINFOVIEW *PCVBVAINFOVIEW; 720 730 typedef struct VBVAHOSTFLAGS *PVBVAHOSTFLAGS; 721 731 struct VBOXVDMACMD_CHROMIUM_CMD; /* <- chromium [hgsmi] command */ … … 918 928 */ 919 929 DECLR3CALLBACKMEMBER(void, pfnVBVAUpdateProcess,(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, 920 const PVBVACMDHDR pCmd, size_t cbCmd));930 PCVBVACMDHDR pCmd, size_t cbCmd)); 921 931 922 932 /** … … 956 966 * otherwise - the emulation thread. 957 967 */ 958 DECLR3CALLBACKMEMBER(int, pfnVBVAResize,(PPDMIDISPLAYCONNECTOR pInterface, const PVBVAINFOVIEW pView, const PVBVAINFOSCREEN pScreen, void *pvVRAM, bool fResetInputMapping));968 DECLR3CALLBACKMEMBER(int, pfnVBVAResize,(PPDMIDISPLAYCONNECTOR pInterface, PCVBVAINFOVIEW pView, PCVBVAINFOSCREEN pScreen, void *pvVRAM, bool fResetInputMapping)); 959 969 960 970 /**
Note:
See TracChangeset
for help on using the changeset viewer.