- Timestamp:
- Jun 8, 2009 12:26:50 AM (16 years ago)
- Location:
- trunk/src/VBox/Additions
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.h
r19844 r20369 32 32 #endif /* VBOX_WITH_HGSMI */ 33 33 34 __BEGIN_DECLS34 RT_BEGIN_DECLS 35 35 #include "dderror.h" 36 36 #include "devioctl.h" … … 38 38 #include "ntddvdeo.h" 39 39 #include "video.h" 40 __END_DECLS40 RT_END_DECLS 41 41 42 42 … … 158 158 { 159 159 160 __BEGIN_DECLS160 RT_BEGIN_DECLS 161 161 ULONG DriverEntry(IN PVOID Context1, IN PVOID Context2); 162 __END_DECLS162 RT_END_DECLS 163 163 164 164 VP_STATUS VBoxVideoFindAdapter( -
trunk/src/VBox/Additions/WINNT/MouseFilter/VBoxMouse.cpp
r18854 r20369 30 30 // VBOX end 31 31 32 __BEGIN_DECLS32 RT_BEGIN_DECLS 33 33 NTSTATUS DriverEntry (PDRIVER_OBJECT, PUNICODE_STRING); 34 __END_DECLS34 RT_END_DECLS 35 35 36 36 #ifdef ALLOC_PRAGMA -
trunk/src/VBox/Additions/WINNT/MouseFilter/VBoxMouse.h
r8155 r20369 25 25 26 26 #include <iprt/assert.h> 27 __BEGIN_DECLS27 RT_BEGIN_DECLS 28 28 #include "ntddk.h" 29 29 #include "kbdmou.h" 30 30 #include <ntddmou.h> 31 31 #include <ntdd8042.h> 32 __END_DECLS32 RT_END_DECLS 33 33 #include <VBox/VBoxGuest.h> 34 34 … … 151 151 // Prototypes 152 152 // 153 __BEGIN_DECLS153 RT_BEGIN_DECLS 154 154 155 155 NTSTATUS … … 226 226 ); 227 227 228 __END_DECLS228 RT_END_DECLS 229 229 230 230 #endif // VBOXMOUSE_H -
trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest.cpp
r18170 r20369 80 80 * Exported Functions * 81 81 *******************************************************************************/ 82 __BEGIN_DECLS82 RT_BEGIN_DECLS 83 83 ULONG DriverEntry(PDRIVER_OBJECT pDrvObj, PUNICODE_STRING pRegPath); 84 __END_DECLS84 RT_END_DECLS 85 85 86 86 #ifdef ALLOC_PRAGMA -
trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest_Internal.h
r18512 r20369 36 36 # define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap 37 37 # pragma warning(disable : 4163) 38 __BEGIN_DECLS38 RT_BEGIN_DECLS 39 39 # include <ntddk.h> 40 __END_DECLS40 RT_END_DECLS 41 41 # pragma warning(default : 4163) 42 42 # undef _InterlockedExchange … … 45 45 # undef _InterlockedAddLargeStatistic 46 46 # else 47 __BEGIN_DECLS47 RT_BEGIN_DECLS 48 48 # include <ntddk.h> 49 __END_DECLS49 RT_END_DECLS 50 50 # endif 51 51 #endif -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuest-os2.cpp
r14297 r20369 88 88 #define SESSION_HASH(sfn) ((sfn) % RT_ELEMENTS(g_apSessionHashTab)) 89 89 90 __BEGIN_DECLS90 RT_BEGIN_DECLS 91 91 /* Defined in VBoxGuestA-os2.asm */ 92 92 extern uint32_t g_PhysMMIOBase; … … 109 109 extern uint16_t g_cchInitText; 110 110 extern uint16_t g_cchInitTextMax; 111 __END_DECLS111 RT_END_DECLS 112 112 113 113 -
trunk/src/VBox/Additions/common/VBoxGuest/VBoxGuestInternal.h
r11820 r20369 147 147 148 148 149 __BEGIN_DECLS149 RT_BEGIN_DECLS 150 150 151 151 int VBoxGuestInitDevExt(PVBOXGUESTDEVEXT pDevExt, uint16_t IOPortBase, void *pvMMIOBase, uint32_t cbMMIO, VBOXOSTYPE enmOSType); … … 162 162 void *pvData, size_t cbData, size_t *pcbDataReturned); 163 163 164 __END_DECLS164 RT_END_DECLS 165 165 166 166 #endif -
trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.cpp
r19093 r20369 142 142 143 143 #ifdef RT_OS_LINUX 144 __BEGIN_DECLS144 RT_BEGIN_DECLS 145 145 extern DECLVBGL(void *) vboxadd_cmc_open (void); 146 146 extern DECLVBGL(void) vboxadd_cmc_close (void *); 147 147 extern DECLVBGL(int) vboxadd_cmc_call (void *opaque, uint32_t func, void *data); 148 __END_DECLS148 RT_END_DECLS 149 149 #endif /* RT_OS_LINUX */ 150 150 151 151 #ifdef RT_OS_OS2 152 __BEGIN_DECLS152 RT_BEGIN_DECLS 153 153 /* 154 154 * On OS/2 we'll do the connecting in the assembly code of the … … 157 157 */ 158 158 extern VBOXGUESTOS2IDCCONNECT g_VBoxGuestIDC; 159 __END_DECLS159 RT_END_DECLS 160 160 #endif 161 161 162 162 #ifdef RT_OS_SOLARIS 163 __BEGIN_DECLS163 RT_BEGIN_DECLS 164 164 extern DECLVBGL(void *) VBoxGuestSolarisServiceOpen (uint32_t *pu32Version); 165 165 extern DECLVBGL(void) VBoxGuestSolarisServiceClose (void *pvOpaque); 166 166 extern DECLVBGL(int) VBoxGuestSolarisServiceCall (void *pvOpaque, unsigned int iCmd, void *pvData, size_t cbSize, size_t *pcbReturn); 167 __END_DECLS167 RT_END_DECLS 168 168 169 169 #elif defined (RT_OS_FREEBSD) 170 __BEGIN_DECLS170 RT_BEGIN_DECLS 171 171 extern DECLVBGL(void *) VBoxGuestFreeBSDServiceOpen (uint32_t *pu32Version); 172 172 extern DECLVBGL(void) VBoxGuestFreeBSDServiceClose (void *pvOpaque); 173 173 extern DECLVBGL(int) VBoxGuestFreeBSDServiceCall (void *pvOpaque, unsigned int iCmd, void *pvData, size_t cbSize, size_t *pcbReturn); 174 __END_DECLS174 RT_END_DECLS 175 175 176 176 #endif -
trunk/src/VBox/Additions/common/VBoxGuestLib/SysHlp.h
r18502 r20369 32 32 # define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap 33 33 # pragma warning(disable : 4163) 34 __BEGIN_DECLS34 RT_BEGIN_DECLS 35 35 # include <ntddk.h> 36 __END_DECLS36 RT_END_DECLS 37 37 # pragma warning(default : 4163) 38 38 # undef _InterlockedExchange … … 41 41 # undef _InterlockedAddLargeStatistic 42 42 # else 43 __BEGIN_DECLS43 RT_BEGIN_DECLS 44 44 # include <ntddk.h> 45 __END_DECLS45 RT_END_DECLS 46 46 # endif 47 47 /* XP DDK #defines ExFreePool to ExFreePoolWithTag. The latter does not exist on NT4, so... -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBGLR3Internal.h
r18451 r20369 28 28 #include <VBox/VBoxGuest.h> 29 29 30 __BEGIN_DECLS30 RT_BEGIN_DECLS 31 31 32 32 int vbglR3DoIOCtl(unsigned iFunction, void *pvData, size_t cbData); … … 93 93 #endif /* ___iprt_string_h */ 94 94 95 __END_DECLS95 RT_END_DECLS 96 96 97 97 #endif -
trunk/src/VBox/Additions/common/VBoxGuestLib/VBoxCalls.h
r18501 r20369 34 34 # define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKvsCompilerCrap 35 35 # pragma warning(disable : 4163) 36 __BEGIN_DECLS36 RT_BEGIN_DECLS 37 37 # include <ntddk.h> 38 __END_DECLS38 RT_END_DECLS 39 39 # pragma warning(default : 4163) 40 40 # undef _InterlockedExchange … … 43 43 # undef _InterlockedAddLargeStatistic 44 44 # else 45 __BEGIN_DECLS45 RT_BEGIN_DECLS 46 46 # include <ntddk.h> 47 __END_DECLS47 RT_END_DECLS 48 48 # endif 49 49 # endif -
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceInternal.h
r19644 r20369 116 116 #endif 117 117 118 __BEGIN_DECLS118 RT_BEGIN_DECLS 119 119 120 120 extern char *g_pszProgName; … … 155 155 #endif /* RT_OS_WINDOWS */ 156 156 157 __END_DECLS157 RT_END_DECLS 158 158 159 159 #endif
Note:
See TracChangeset
for help on using the changeset viewer.