Changeset 20369 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Jun 8, 2009 12:26:50 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48292
- Location:
- trunk/src/VBox/Additions/WINNT
- Files:
-
- 5 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
Note:
See TracChangeset
for help on using the changeset viewer.