- Timestamp:
- May 9, 2010 9:21:36 PM (15 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/VBox/VBoxRTDeps.cpp
r28800 r29267 28 28 * Header Files * 29 29 *******************************************************************************/ 30 #include <VBox/sup.h> 30 #ifndef RT_NO_GIP 31 # include <VBox/sup.h> 32 #endif 31 33 #include <iprt/asm.h> 32 34 #include <iprt/assert.h> … … 48 50 PFNRT g_VBoxRTDeps[] = 49 51 { 52 #ifndef RT_NO_GIP 50 53 (PFNRT)SUPR3Init, 51 54 (PFNRT)SUPR3PageAllocEx, 52 55 (PFNRT)SUPSemEventCreate, 56 #endif 53 57 (PFNRT)xmlModuleOpen, 54 58 (PFNRT)MD5_Init, -
trunk/src/VBox/Runtime/common/time/timesup.cpp
r29250 r29267 36 36 #include <iprt/err.h> 37 37 #include <iprt/log.h> 38 #if ndef IN_GUEST38 #if !defined(IN_GUEST) && !defined(RT_NO_GIP) 39 39 # include <iprt/asm.h> 40 40 # include <iprt/asm-amd64-x86.h> -
trunk/src/VBox/Runtime/common/time/timesupref.cpp
r29250 r29267 5 5 6 6 /* 7 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2010 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 25 25 */ 26 26 27 #if ndef IN_GUEST27 #if !defined(IN_GUEST) && !defined(RT_NO_GIP) 28 28 29 29 /******************************************************************************* … … 82 82 83 83 84 #endif /* !IN_GUEST */84 #endif /* !IN_GUEST && !RT_NO_GIP */ 85 85
Note:
See TracChangeset
for help on using the changeset viewer.