Make winnt.h C++ compatible.

This commit is contained in:
Francois Gouget 2007-02-09 12:22:34 +01:00 committed by Alexandre Julliard
parent 590c4020f2
commit ac2754b74d

View file

@ -30,6 +30,11 @@
#include <string.h>
#endif
#ifdef __cplusplus
extern "C" {
#endif
#define NTAPI __stdcall
#if (defined(_M_IX86) || defined(_M_IA64) || defined(_M_AMD64) || defined(__MINGW32__)) && !defined(MIDL_PASS)
@ -4785,4 +4790,8 @@ ULONGLONG WINAPI VerSetConditionMask(ULONGLONG,DWORD,BYTE);
#define VER_AND 6
#define VER_OR 7
#ifdef __cplusplus
}
#endif
#endif /* _WINNT_ */