Changeset 30223 in vbox for trunk/src/VBox/Devices/Storage
- Timestamp:
- Jun 16, 2010 1:55:05 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 62709
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Storage/DrvHostDVD.cpp
r29250 r30223 23 23 #define __STDC_LIMIT_MACROS 24 24 #define __STDC_CONSTANT_MACROS 25 25 26 #ifdef RT_OS_DARWIN 26 27 # include <mach/mach.h> … … 74 75 75 76 #elif defined(RT_OS_WINDOWS) 77 # pragma warning(disable : 4163) 78 # define _interlockedbittestandset they_messed_it_up_in_winnt_h_this_time_sigh__interlockedbittestandset 79 # define _interlockedbittestandreset they_messed_it_up_in_winnt_h_this_time_sigh__interlockedbittestandreset 80 # define _interlockedbittestandset64 they_messed_it_up_in_winnt_h_this_time_sigh__interlockedbittestandset64 81 # define _interlockedbittestandreset64 they_messed_it_up_in_winnt_h_this_time_sigh__interlockedbittestandreset64 76 82 # include <Windows.h> 77 83 # include <winioctl.h> 78 84 # include <ntddscsi.h> 85 # pragma warning(default : 4163) 86 # undef _interlockedbittestandset 87 # undef _interlockedbittestandreset 88 # undef _interlockedbittestandset64 89 # undef _interlockedbittestandreset64 79 90 # undef USE_MEDIA_POLLING 80 91 … … 91 102 #endif 92 103 104 #include <iprt/asm.h> 93 105 #include <VBox/pdmdrv.h> 94 106 #include <iprt/asm.h>
Note:
See TracChangeset
for help on using the changeset viewer.