Changeset 42224 in vbox for trunk/src/VBox
- Timestamp:
- Jul 19, 2012 10:38:00 AM (13 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/VBoxTray
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDispIf.cpp
r42223 r42224 15 15 */ 16 16 17 #include "VBox DispIf.h"17 #include "VBoxTray.h" 18 18 19 19 #include <iprt/log.h> -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDispIf.h
r42217 r42224 16 16 #include <iprt/cdefs.h> 17 17 18 #include <windows.h>19 18 #ifdef VBOX_WITH_WDDM 20 19 # define D3DKMDT_SPECIAL_MULTIPLATFORM_TOOL -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDisplay.cpp
r42217 r42224 16 16 */ 17 17 #define _WIN32_WINNT 0x0500 18 #include <windows.h>19 18 #include "VBoxTray.h" 20 19 #include "VBoxHelpers.h" -
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxTray.h
r35863 r42224 19 19 #define ___VBOXTRAY_H 20 20 21 # define _InterlockedExchange _InterlockedExchange_StupidDDKVsCompilerCrap 22 # define _InterlockedExchangeAdd _InterlockedExchangeAdd_StupidDDKVsCompilerCrap 23 # define _InterlockedCompareExchange _InterlockedCompareExchange_StupidDDKVsCompilerCrap 24 # define _InterlockedAddLargeStatistic _InterlockedAddLargeStatistic_StupidDDKVsCompilerCrap 25 # define _interlockedbittestandset _interlockedbittestandset_StupidDDKVsCompilerCrap 26 # define _interlockedbittestandreset _interlockedbittestandreset_StupidDDKVsCompilerCrap 27 # define _interlockedbittestandset64 _interlockedbittestandset64_StupidDDKVsCompilerCrap 28 # define _interlockedbittestandreset64 _interlockedbittestandreset64_StupidDDKVsCompilerCrap 29 # pragma warning(disable : 4163) 21 30 #include <windows.h> 31 # pragma warning(default : 4163) 32 # undef _InterlockedExchange 33 # undef _InterlockedExchangeAdd 34 # undef _InterlockedCompareExchange 35 # undef _InterlockedAddLargeStatistic 36 # undef _interlockedbittestandset 37 # undef _interlockedbittestandreset 38 # undef _interlockedbittestandset64 39 # undef _interlockedbittestandreset64 40 22 41 #include <tchar.h> 23 42 #include <stdio.h>
Note:
See TracChangeset
for help on using the changeset viewer.