Changeset 63032 in vbox for trunk/include
- Timestamp:
- Aug 5, 2016 11:19:23 AM (8 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/win/windef.h
r63022 r63032 1 1 /** @file 2 * Safe way to include Windows.h.2 * Safe way to include windef.h. 3 3 */ 4 4 … … 25 25 26 26 27 #ifndef ___iprt_win_wind ows_h___28 #define ___iprt_win_wind ows_h___27 #ifndef ___iprt_win_windef_h___ 28 #define ___iprt_win_windef_h___ 29 29 30 30 #ifdef _MSC_VER 31 31 /* 32 * Unfortunately, the Windows.h file in SDK 7.1 is not clean wrt warning C4668: 33 * wincrypt.h(1848) : warning C4668: 'NTDDI_WINLH' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' 32 * Unfortunately, the windef.h file in SDK 7.1 is not clean wrt warning C4668: 33 * basetsd.h(114) : warning C4668: '__midl' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' 34 * winnt.h(13017) : warning C4668: '_DBG_MEMCPY_INLINE_' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' 34 35 */ 35 36 # pragma warning(push) 36 37 # pragma warning(disable:4668) 37 # ifndef __cplusplus38 # pragma warning(disable:4255) /* warning C4255: 'FARPROC' : no function prototype given: converting '()' to '(void)' */39 # endif40 38 #endif 41 39 42 #include < Windows.h>40 #include <windef.h> 43 41 44 42 #ifdef _MSC_VER
Note:
See TracChangeset
for help on using the changeset viewer.