Changeset 68653 in vbox for trunk/src/VBox/Additions/common/VBoxGuest/lib
- Timestamp:
- Sep 5, 2017 2:53:44 PM (7 years ago)
- Location:
- trunk/src/VBox/Additions/common/VBoxGuest/lib
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibCrOgl.cpp
r68645 r68653 25 25 */ 26 26 27 /* Entire file is ifdef'ed with !VBGL_VBOXGUEST */28 #ifdef VBGL_VBOXGUEST29 # error "VBGL_VBOXGUEST should not be defined"30 #endif31 27 32 28 /********************************************************************************************************************************* … … 35 31 #include <iprt/string.h> 36 32 #include "VBoxGuestR0LibInternal.h" 33 34 #ifdef VBGL_VBOXGUEST 35 # error "This file shouldn't be part of the VBoxGuestR0LibBase library that is linked into VBoxGuest. It's client code." 36 #endif 37 37 38 38 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibGenericRequest.cpp
r68645 r68653 25 25 */ 26 26 27 28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 27 31 #include "VBoxGuestR0LibInternal.h" 28 32 #include <iprt/asm.h> -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibHGCM.cpp
r68645 r68653 31 31 * Header Files * 32 32 *********************************************************************************************************************************/ 33 /* Entire file is ifdef'ed with !VBGL_VBOXGUEST */34 #ifndef VBGL_VBOXGUEST35 36 33 #include "VBoxGuestR0LibInternal.h" 37 34 … … 40 37 #include <iprt/string.h> 41 38 39 #ifdef VBGL_VBOXGUEST 40 # error "This file shouldn't be part of the VBoxGuestR0LibBase library that is linked into VBoxGuest. It's client code." 41 #endif 42 43 44 /********************************************************************************************************************************* 45 * Defined Constants And Macros * 46 *********************************************************************************************************************************/ 42 47 #define VBGL_HGCM_ASSERT_MSG AssertReleaseMsg 43 48 … … 220 225 } 221 226 222 #endif /* !VBGL_VBOXGUEST */223 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibHGCMInternal.cpp
r68645 r68653 24 24 * terms and conditions of either the GPL or the CDDL or both. 25 25 */ 26 27 /* Entire file is ifdef'ed with VBGL_VBOXGUEST */28 #ifdef VBGL_VBOXGUEST29 26 30 27 … … 43 40 #include <iprt/thread.h> 44 41 #include <iprt/time.h> 42 43 #ifndef VBGL_VBOXGUEST 44 # error "This file should only be part of the VBoxGuestR0LibBase library that is linked into VBoxGuest." 45 #endif 45 46 46 47 … … 1072 1073 #endif /* ARCH_BITS == 64 */ 1073 1074 1074 #endif /* VBGL_VBOXGUEST */1075 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibIdc.cpp
r68550 r68653 33 33 #include <VBox/VBoxGuest.h> 34 34 /*#include <iprt/asm.h>*/ 35 36 #ifdef VBGL_VBOXGUEST 37 # error "This file shouldn't be part of the VBoxGuestR0LibBase library that is linked into VBoxGuest. It's client code." 38 #endif 39 35 40 36 41 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibMouse.cpp
r68645 r68653 25 25 */ 26 26 27 /********************************************************************************************************************************* 28 * Header Files * 29 *********************************************************************************************************************************/ 27 30 #include "VBoxGuestR0LibInternal.h" 31 #ifdef VBGL_VBOXGUEST 32 # error "This file shouldn't be part of the VBoxGuestR0LibBase library that is linked into VBoxGuest. It's client code." 33 #endif 34 28 35 29 36 /** -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibPhysHeap.cpp
r68645 r68653 25 25 */ 26 26 27 /********************************************************************************************************************************* 28 * Header Files * 29 *********************************************************************************************************************************/ 27 30 #include "VBoxGuestR0LibInternal.h" 28 31 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibSharedFolders.c
r68555 r68653 25 25 */ 26 26 27 /* Entire file is ifdef'ed with !VBGL_VBOXGUEST */28 #ifndef VBGL_VBOXGUEST29 30 31 27 /********************************************************************************************************************************* 32 28 * Header Files * … … 40 36 #include <iprt/string.h> 41 37 38 #ifdef VBGL_VBOXGUEST 39 # error "This file shouldn't be part of the VBoxGuestR0LibBase library that is linked into VBoxGuest. It's client code." 40 #endif 41 42 42 43 43 /********************************************************************************************************************************* … … 704 704 } 705 705 706 707 #endif /* !VBGL_VBOXGUEST */ -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VBoxGuestR0LibVMMDev.cpp
r68645 r68653 25 25 */ 26 26 27 /********************************************************************************************************************************* 28 * Header Files * 29 *********************************************************************************************************************************/ 27 30 #include "VBoxGuestR0LibInternal.h" 28 31 -
trunk/src/VBox/Additions/common/VBoxGuest/lib/VbglR0CanUsePhysPageList.cpp
r68645 r68653 25 25 */ 26 26 27 /********************************************************************************************************************************* 28 * Header Files * 29 *********************************************************************************************************************************/ 27 30 #include "VBoxGuestR0LibInternal.h" 28 31
Note:
See TracChangeset
for help on using the changeset viewer.