Disable C4055 warning (data -> function pointer conversion).

This commit is contained in:
Joachim Bauch
2016-01-27 00:57:06 +01:00
parent d9a6bb9c8f
commit d88817fbf7
+5
View File
@@ -33,6 +33,11 @@
#include <stdio.h>
#endif
#if _MSC_VER
// Disable warning about data -> function pointer conversion
#pragma warning(disable:4055)
#endif
#ifndef IMAGE_SIZEOF_BASE_RELOCATION
// Vista SDKs no longer define IMAGE_SIZEOF_BASE_RELOCATION!?
#define IMAGE_SIZEOF_BASE_RELOCATION (sizeof(IMAGE_BASE_RELOCATION))