Changeset 63036 in vbox for trunk/include
- Timestamp:
- Aug 5, 2016 11:42:25 AM (8 years ago)
- Location:
- trunk/include/iprt/nt
- Files:
-
- 1 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nt/miniport.h
r63034 r63036 1 1 /** @file 2 * Safe way to include ndis.h.2 * Safe way to include miniport.h. 3 3 */ 4 4 … … 25 25 26 26 27 #ifndef ___iprt_nt_ndis_h___ 28 #define ___iprt_nt_ndis_h___ 27 #ifndef ___iprt_nt_miniport_h___ 28 #define ___iprt_nt_miniport_h___ 29 30 #include <iprt/cdefs.h> 29 31 30 32 #ifdef _MSC_VER 31 33 # pragma warning(push) 32 # pragma warning(disable:4668) /* warning C4668: 'NDIS_WRAPPER' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' */34 # pragma warning(disable:4668) /* basetsd.h(114) : warning C4668: '__midl' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' */ 33 35 #endif 34 36 35 37 RT_C_DECLS_BEGIN 36 #include < ndis.h>38 #include <miniport.h> 37 39 RT_C_DECLS_END 38 40 39 #if ndef _MSC_VER41 #ifdef _MSC_VER 40 42 # pragma warning(pop) 41 43 #endif -
trunk/include/iprt/nt/ndis.h
r63035 r63036 28 28 #define ___iprt_nt_ndis_h___ 29 29 30 #include <iprt/cdefs.h> 31 30 32 #ifdef _MSC_VER 31 33 # pragma warning(push) -
trunk/include/iprt/nt/video.h
r63035 r63036 1 1 /** @file 2 * Safe way to include ndis.h.2 * Safe way to include video.h (DDK). 3 3 */ 4 4 … … 25 25 26 26 27 #ifndef ___iprt_nt_ndis_h___ 28 #define ___iprt_nt_ndis_h___ 27 #ifndef ___iprt_nt_video_h___ 28 #define ___iprt_nt_video_h___ 29 30 #include <iprt/cdefs.h> 29 31 30 32 #ifdef _MSC_VER 31 33 # pragma warning(push) 32 # pragma warning(disable:4668) /* warning C4668: ' NDIS_WRAPPER' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' */34 # pragma warning(disable:4668) /* warning C4668: 'DBG' is not defined as a preprocessor macro, replacing with '0' for '#if/#elif' */ 33 35 #endif 34 36 35 RT_C_DECLS_BEGIN 36 #include <ndis.h> 37 RT_C_DECLS_END 37 #include <video.h> 38 38 39 39 #ifdef _MSC_VER
Note:
See TracChangeset
for help on using the changeset viewer.