- Timestamp:
- Dec 23, 2018 12:47:17 AM (6 years ago)
- svn:sync-xref-src-repo-rev:
- 127680
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/vmm/pdmifs.h
r75990 r76382 29 29 #include <iprt/sg.h> 30 30 #include <VBox/types.h> 31 #include <VBox/hgcmsvc.h>32 31 33 32 … … 2115 2114 # define PDMIHGCMPORT_IID "28c0a201-68cd-4752-9404-bb42a0c09eb7" 2116 2115 2117 2116 /* forward decl to hgvmsvc.h. */ 2117 struct VBOXHGCMSVCPARM; 2118 2118 /** Pointer to a HGCM service location structure. */ 2119 2119 typedef struct HGCMSERVICELOCATION *PHGCMSERVICELOCATION; 2120 2121 2120 /** Pointer to a HGCM connector interface. */ 2122 2121 typedef struct PDMIHGCMCONNECTOR *PPDMIHGCMCONNECTOR; … … 2165 2164 */ 2166 2165 DECLR3CALLBACKMEMBER(int, pfnCall,(PPDMIHGCMCONNECTOR pInterface, PVBOXHGCMCMD pCmd, uint32_t u32ClientID, uint32_t u32Function, 2167 uint32_t cParms, PVBOXHGCMSVCPARMpaParms, uint64_t tsArrival));2166 uint32_t cParms, struct VBOXHGCMSVCPARM *paParms, uint64_t tsArrival)); 2168 2167 2169 2168 /** -
trunk/src/VBox/Devices/Audio/DevHDA.cpp
r76158 r76382 40 40 #include <iprt/file.h> 41 41 #include <iprt/list.h> 42 # include <iprt/string.h> 42 43 #ifdef IN_RING3 43 44 # include <iprt/mem.h> 44 45 # include <iprt/semaphore.h> 45 # include <iprt/string.h>46 46 # include <iprt/uuid.h> 47 47 #endif -
trunk/src/VBox/Devices/Network/DevVirtioNet.cpp
r73415 r76382 30 30 #include <iprt/net.h> 31 31 #include <iprt/semaphore.h> 32 #include <iprt/string.h> 32 33 #ifdef IN_RING3 33 34 # include <iprt/mem.h> 34 35 # include <iprt/uuid.h> 35 #endif /* IN_RING3 */36 #endif 36 37 #include <VBox/VBoxPktDmp.h> 37 38 #include "VBoxDD.h" -
trunk/src/VBox/Devices/Storage/DrvHostBase-linux.cpp
r69500 r76382 15 15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. 16 16 */ 17 18 /********************************************************************************************************************************* 19 * Header Files * 20 *********************************************************************************************************************************/ 17 21 #define LOG_GROUP LOG_GROUP_DRV_HOST_BASE 18 22 #include <sys/ioctl.h> … … 37 41 #include <iprt/mem.h> 38 42 #include <iprt/file.h> 43 #include <iprt/string.h> 39 44 #include <VBox/scsi.h> 40 45 41 /** Maximum buffer size supported by the kernel interface. */42 #define LNX_SCSI_MAX_BUFFER_SIZE (100 * _1K)43 46 44 47 /** 45 * Host backend specific data .48 * Host backend specific data (needed by DrvHostBase.h). 46 49 */ 47 50 typedef struct DRVHOSTBASEOS … … 61 64 #define DRVHOSTBASE_OS_INT_DECLARED 62 65 #include "DrvHostBase.h" 66 67 68 /********************************************************************************************************************************* 69 * Defined Constants And Macros * 70 *********************************************************************************************************************************/ 71 /** Maximum buffer size supported by the kernel interface. */ 72 #define LNX_SCSI_MAX_BUFFER_SIZE (100 * _1K) 73 74 75 76 63 77 64 78 DECLHIDDEN(int) drvHostBaseScsiCmdOs(PDRVHOSTBASE pThis, const uint8_t *pbCmd, size_t cbCmd, PDMMEDIATXDIR enmTxDir, -
trunk/src/VBox/Main/include/VMMDev.h
r75969 r76382 21 21 #include "VirtualBoxBase.h" 22 22 #include <VBox/vmm/pdmdrv.h> 23 #include <VBox/hgcmsvc.h> 23 24 #include <iprt/asm.h> 24 25 -
trunk/src/VBox/VMM/VMMAll/GIMAll.cpp
r72469 r76382 28 28 #include <VBox/dis.h> /* For DISCPUSTATE */ 29 29 #include <VBox/err.h> 30 #include <iprt/string.h> 30 31 31 32 /* Include all the providers. */ -
trunk/src/VBox/VMM/VMMAll/IOMAll.cpp
r72493 r76382 35 35 #include <VBox/log.h> 36 36 #include <iprt/assert.h> 37 #include <iprt/string.h> 37 38 #include "IOMInline.h" 38 39
Note:
See TracChangeset
for help on using the changeset viewer.