Kaydet (Commit) c1aeceb3 authored tarafından Michael Stahl's avatar Michael Stahl

npapi.h: work around idiotic warnings from winnt.h

Change-Id: I9a685fd0bf2e1285299d99ea39c29501bf8fadcd
üst 765c7ddf
......@@ -51,7 +51,14 @@
#endif
#if defined(_WIN32) && !defined(__SYMBIAN32__)
#if _MSC_VER >= 1200
#pragma warning(push)
#pragma warning(disable:4201)
#endif
#include <windef.h>
#if _MSC_VER >= 1200
#pragma warning(pop)
#endif
#ifndef XP_WIN
#define XP_WIN 1
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment