Revision a2e6a2b1dd1da48e502fc25126aa9b8a139ed543 authored by GUANGMING ZANG on 13 August 2018, 08:44:48 UTC, committed by GitHub on 13 August 2018, 08:44:48 UTC
1 parent 80d039c
MyStandardIncludes.h
#ifndef __MyStandardIncludes_h
#define __MyStandardIncludes_h
#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
#define My_OS_WIN32
#elif defined(__linux__) || defined(__linux)
#define My_OS_LINUX
#endif
#if defined(My_OS_WIN32)
#define _WIN32_WINNT 0x0501
#include <windows.h>
#if defined(My_STANDARD_DLL)
#define My_STANDARD_API __declspec(dllexport)
#else
#define My_STANDARD_API __declspec(dllimport)
#endif
#else //Other system
#undef My_STANDARD_DLL
#endif
#ifndef My_STANDARD_API
#define My_STANDARD_API
#endif
#endif 
Computing file changes ...