Changeset 20374 in vbox for trunk/src/VBox/Additions/WINNT
- Timestamp:
- Jun 8, 2009 12:43:21 AM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48298
- Location:
- trunk/src/VBox/Additions/WINNT
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.h
r20369 r20374 32 32 #endif /* VBOX_WITH_HGSMI */ 33 33 34 RT_ BEGIN_DECLS34 RT_C_DECLS_BEGIN 35 35 #include "dderror.h" 36 36 #include "devioctl.h" … … 38 38 #include "ntddvdeo.h" 39 39 #include "video.h" 40 RT_ END_DECLS40 RT_C_DECLS_END 41 41 42 42 … … 158 158 { 159 159 160 RT_ BEGIN_DECLS160 RT_C_DECLS_BEGIN 161 161 ULONG DriverEntry(IN PVOID Context1, IN PVOID Context2); 162 RT_ END_DECLS162 RT_C_DECLS_END 163 163 164 164 VP_STATUS VBoxVideoFindAdapter( -
trunk/src/VBox/Additions/WINNT/MouseFilter/VBoxMouse.cpp
r20369 r20374 30 30 // VBOX end 31 31 32 RT_ BEGIN_DECLS32 RT_C_DECLS_BEGIN 33 33 NTSTATUS DriverEntry (PDRIVER_OBJECT, PUNICODE_STRING); 34 RT_ END_DECLS34 RT_C_DECLS_END 35 35 36 36 #ifdef ALLOC_PRAGMA -
trunk/src/VBox/Additions/WINNT/MouseFilter/VBoxMouse.h
r20369 r20374 25 25 26 26 #include <iprt/assert.h> 27 RT_ BEGIN_DECLS27 RT_C_DECLS_BEGIN 28 28 #include "ntddk.h" 29 29 #include "kbdmou.h" 30 30 #include <ntddmou.h> 31 31 #include <ntdd8042.h> 32 RT_ END_DECLS32 RT_C_DECLS_END 33 33 #include <VBox/VBoxGuest.h> 34 34 … … 151 151 // Prototypes 152 152 // 153 RT_ BEGIN_DECLS153 RT_C_DECLS_BEGIN 154 154 155 155 NTSTATUS … … 226 226 ); 227 227 228 RT_ END_DECLS228 RT_C_DECLS_END 229 229 230 230 #endif // VBOXMOUSE_H -
trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest.cpp
r20369 r20374 80 80 * Exported Functions * 81 81 *******************************************************************************/ 82 RT_ BEGIN_DECLS82 RT_C_DECLS_BEGIN 83 83 ULONG DriverEntry(PDRIVER_OBJECT pDrvObj, PUNICODE_STRING pRegPath); 84 RT_ END_DECLS84 RT_C_DECLS_END 85 85 86 86 #ifdef ALLOC_PRAGMA -
trunk/src/VBox/Additions/WINNT/VBoxGuest/VBoxGuest_Internal.h
r20369 r20374 36 36 # define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap 37 37 # pragma warning(disable : 4163) 38 RT_ BEGIN_DECLS38 RT_C_DECLS_BEGIN 39 39 # include <ntddk.h> 40 RT_ END_DECLS40 RT_C_DECLS_END 41 41 # pragma warning(default : 4163) 42 42 # undef _InterlockedExchange … … 45 45 # undef _InterlockedAddLargeStatistic 46 46 # else 47 RT_ BEGIN_DECLS47 RT_C_DECLS_BEGIN 48 48 # include <ntddk.h> 49 RT_ END_DECLS49 RT_C_DECLS_END 50 50 # endif 51 51 #endif
Note:
See TracChangeset
for help on using the changeset viewer.