- Timestamp:
- Sep 6, 2017 9:11:14 AM (7 years ago)
- Location:
- trunk/include/VBox/Graphics
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/Graphics/HGSMI.h
r66544 r68672 1 1 /** @file 2 * 3 * VBox Host Guest Shared Memory Interface (HGSMI). 4 * Host/Guest shared part. 2 * VBox Host Guest Shared Memory Interface (HGSMI) - Host/Guest shared part. 5 3 */ 6 4 … … 31 29 #define ___VBox_Graphics_HGSMI_h 32 30 33 #include <VBoxVideoIPRT.h>34 35 #include <HGSMIDefs.h>36 #include <HGSMIChannels.h>37 #include <HGSMIMemAlloc.h>31 #include "VBoxVideoIPRT.h" 32 33 #include "HGSMIDefs.h" 34 #include "HGSMIChannels.h" 35 #include "HGSMIMemAlloc.h" 38 36 39 37 /* -
trunk/include/VBox/Graphics/HGSMIBase.h
r67066 r68672 1 1 /** @file 2 * VBox Host Guest Shared Memory Interface (HGSMI) buffer management.2 * VBox Host Guest Shared Memory Interface (HGSMI) - buffer management. 3 3 */ 4 4 … … 28 28 #define ___VBox_Graphics_HGSMIBase_h___ 29 29 30 #include <HGSMI.h>31 #include <HGSMIContext.h>32 #include <VBoxVideoIPRT.h>30 #include "HGSMI.h" 31 #include "HGSMIContext.h" 32 #include "VBoxVideoIPRT.h" 33 33 34 34 RT_C_DECLS_BEGIN -
trunk/include/VBox/Graphics/HGSMIChSetup.h
r66544 r68672 1 1 /** @file 2 * VBox Host Guest Shared Memory Interface (HGSMI), sHost/Guest shared part.2 * VBox Host Guest Shared Memory Interface (HGSMI), Host/Guest shared part. 3 3 */ 4 4 … … 27 27 #ifndef ___VBox_Graphics_HGSMIChSetup_h 28 28 #define ___VBox_Graphics_HGSMIChSetup_h 29 30 #include "HGSMIDefs.h" 29 31 30 32 /* HGSMI setup and configuration channel commands and data structures. */ -
trunk/include/VBox/Graphics/HGSMIContext.h
r67066 r68672 1 1 /** @file 2 * VBox Host Guest Shared Memory Interface (HGSMI) command contexts.2 * VBox Host Guest Shared Memory Interface (HGSMI) - command contexts. 3 3 */ 4 4 … … 28 28 #define ___VBox_Graphics_HGSMIContext_h___ 29 29 30 #include <HGSMI.h>31 #include <HGSMIChSetup.h>32 #include <VBoxVideoIPRT.h>30 #include "HGSMI.h" 31 #include "HGSMIChSetup.h" 32 #include "VBoxVideoIPRT.h" 33 33 34 34 #ifdef VBOX_WDDM_MINIPORT … … 105 105 106 106 #endif 107 -
trunk/include/VBox/Graphics/HGSMIDefs.h
r66544 r68672 1 1 /** @file 2 * 3 * VBox Host Guest Shared Memory Interface (HGSMI). 4 * Host/Guest shared part: types and defines. 2 * VBox Host Guest Shared Memory Interface (HGSMI) - shared part - types and defines. 5 3 */ 6 4 … … 31 29 #define ___VBox_Graphics_HGSMIDefs_h 32 30 33 #include <VBoxVideoIPRT.h>31 #include "VBoxVideoIPRT.h" 34 32 35 33 /* HGSMI uses 32 bit offsets and sizes. */ … … 61 59 62 60 63 #pragma pack(1) 61 #pragma pack(1) /** @todo not necessary. use AssertCompileSize instead. */ 64 62 /* 16 bytes buffer header. */ 65 63 typedef struct HGSMIBUFFERHEADER … … 122 120 123 121 #endif /* !___VBox_Graphics_HGSMIDefs_h */ 122 -
trunk/include/VBox/Graphics/HGSMIHostCmd.h
r67066 r68672 1 1 /** @file 2 * VBox Host Guest Shared Memory Interface (HGSMI) buffer management.2 * VBox Host Guest Shared Memory Interface (HGSMI) - buffer management. 3 3 */ 4 4 … … 28 28 #define ___VBox_Graphics_HGSMIHostCmd_h___ 29 29 30 #include <HGSMI.h>31 #include <HGSMIContext.h>32 #include <VBoxVideoIPRT.h>30 #include "HGSMI.h" 31 #include "HGSMIContext.h" 32 #include "VBoxVideoIPRT.h" 33 33 34 34 RT_C_DECLS_BEGIN -
trunk/include/VBox/Graphics/HGSMIMemAlloc.h
r66506 r68672 1 1 /** @file 2 * 3 * VBox Host Guest Shared Memory Interface (HGSMI). 4 * Memory allocator. 2 * VBox Host Guest Shared Memory Interface (HGSMI) - Memory allocator. 5 3 */ 6 4 … … 30 28 #define ___VBox_Graphics_HGSMIMemAlloc_h 31 29 32 #include <HGSMIDefs.h>33 #include <VBoxVideoIPRT.h>30 #include "HGSMIDefs.h" 31 #include "VBoxVideoIPRT.h" 34 32 35 33 -
trunk/include/VBox/Graphics/VBoxCrHgsmi.h
r68550 r68672 1 /** @file 2 * Document me, pretty please. 3 */ 4 1 5 /* 2 6 * Copyright (C) 2010-2016 Oracle Corporation … … 23 27 24 28 #include <iprt/cdefs.h> 25 #include <VBoxUhgsmi.h>29 #include "VBoxUhgsmi.h" 26 30 27 31 RT_C_DECLS_BEGIN -
trunk/include/VBox/Graphics/VBoxVideoGuest.h
r67066 r68672 1 1 /** @file 2 * VBox Host Guest Shared Memory Interface (HGSMI). 3 * OS-independent guest structures. 2 * VBox Host Guest Shared Memory Interface (HGSMI) - OS-independent guest structures. 4 3 */ 5 4 … … 30 29 #define ___VBox_Graphics_VBoxVideoGuest_h___ 31 30 32 #include <HGSMIBase.h>33 #include <VBoxVideo.h>34 #include <VBoxVideoIPRT.h>31 #include "HGSMIBase.h" 32 #include "VBoxVideo.h" 33 #include "VBoxVideoIPRT.h" 35 34 36 35 RT_C_DECLS_BEGIN -
trunk/include/VBox/Graphics/VBoxVideoIPRT.h
r68657 r68672 1 1 /** @file 2 * VirtualBox Video driver, common code - iprt and VirtualBox macros and 3 * definitions. 2 * VirtualBox Video driver, common code - iprt and VirtualBox macros and definitions. 4 3 */ 5 4
Note:
See TracChangeset
for help on using the changeset viewer.