Changeset 76557 in vbox for trunk/src/VBox
- Timestamp:
- Jan 1, 2019 2:37:24 AM (6 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibInternal.h
r76553 r76557 50 50 /** Pointer to the session handle. */ 51 51 void *pvSession; 52 # if defined(RT_OS_WINDOWS) && (defined( ___iprt_nt_ntddk_h___) || defined(___iprt_nt_nt_h___))52 # if defined(RT_OS_WINDOWS) && (defined(IPRT_INCLUDED_nt_ntddk_h) || defined(IPRT_INCLUDED_nt_nt_h)) 53 53 /** Pointer to the NT device object. */ 54 54 PDEVICE_OBJECT pDeviceObject; -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR3LibInternal.h
r76553 r76557 99 99 100 100 101 #ifdef ___iprt_string_h101 #ifdef IPRT_INCLUDED_string_h 102 102 103 103 DECLINLINE(void) VbglHGCMParmPtrSetString(HGCMFunctionParameter *pParm, const char *psz) … … 108 108 } 109 109 110 #endif /* ___iprt_string_h */110 #endif /* IPRT_INCLUDED_string_h */ 111 111 112 112 #ifdef VBOX_VBGLR3_XFREE86 -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceInternal.h
r76553 r76557 214 214 extern decltype(GetSystemTimeAdjustment) *g_pfnGetSystemTimeAdjustment; 215 215 extern decltype(SetSystemTimeAdjustment) *g_pfnSetSystemTimeAdjustment; 216 # ifdef ___iprt_nt_nt_h___216 # ifdef IPRT_INCLUDED_nt_nt_h 217 217 extern decltype(ZwQuerySystemInformation) *g_pfnZwQuerySystemInformation; 218 218 # endif -
trunk/src/VBox/HostDrivers/Support/SUPLibInternal.h
r76553 r76557 466 466 DECLHIDDEN(void) supR3HardenedWinInitImports(void); 467 467 DECLHIDDEN(void) supR3HardenedWinModifyDllSearchPath(uint32_t fFlags, const char *pszAppBinPath); 468 # ifdef ___iprt_nt_nt_h___468 # ifdef IPRT_INCLUDED_nt_nt_h 469 469 DECLHIDDEN(void) supR3HardenedWinGetVeryEarlyImports(uintptr_t uNtDllAddr, 470 470 PFNNTWAITFORSINGLEOBJECT *ppfnNtWaitForSingleObject, -
trunk/src/VBox/Main/cbinding/tstCAPIGlue.c
r76553 r76557 40 40 # include <sys/poll.h> 41 41 #endif 42 #ifdef ___iprt_cdefs_h42 #ifdef IPRT_INCLUDED_cdefs_h 43 43 # error "not supposed to involve any IPRT or VBox headers here." 44 44 #endif -
trunk/src/VBox/Runtime/include/internal/path.h
r76553 r76557 135 135 136 136 137 #if defined(RT_OS_WINDOWS) && defined( ___iprt_fs_h) && defined(UNICODE_NULL)137 #if defined(RT_OS_WINDOWS) && defined(IPRT_INCLUDED_fs_h) && defined(UNICODE_NULL) 138 138 DECLHIDDEN(int) rtPathNtQueryInfoWorker(HANDLE hRootDir, struct _UNICODE_STRING *pNtName, PRTFSOBJINFO pObjInfo, 139 139 RTFSOBJATTRADD enmAdditionalAttribs, uint32_t fFlags, const char *pszPath); -
trunk/src/VBox/Runtime/include/internal/thread.h
r76553 r76557 262 262 #endif 263 263 264 #ifdef ___iprt_asm_h264 #ifdef IPRT_INCLUDED_asm_h 265 265 266 266 /** -
trunk/src/VBox/Runtime/r0drv/linux/the-linux-kernel.h
r76553 r76557 431 431 * There are some conflicting defines in iprt/param.h, sort them out here. 432 432 */ 433 #ifndef ___iprt_param_h433 #ifndef IPRT_INCLUDED_param_h 434 434 # undef PAGE_SIZE 435 435 # undef PAGE_OFFSET_MASK -
trunk/src/VBox/Runtime/r3/win/internal-r3-win.h
r76553 r76557 111 111 typedef NTSTATUS (NTAPI *PFNNTDUPLICATETOKEN)(HANDLE, ACCESS_MASK, struct _OBJECT_ATTRIBUTES *, BOOLEAN, TOKEN_TYPE, PHANDLE); 112 112 extern DECLHIDDEN(PFNNTDUPLICATETOKEN) g_pfnNtDuplicateToken; 113 #ifdef ___iprt_nt_nt_h___113 #ifdef IPRT_INCLUDED_nt_nt_h 114 114 extern decltype(NtAlertThread) *g_pfnNtAlertThread; 115 115 #endif
Note:
See TracChangeset
for help on using the changeset viewer.