SOIL C++
C++ Unified Device Interface
constants.h
Go to the documentation of this file.
1
7#pragma once
8#ifdef _WIN32
9# pragma warning(disable: 4251)
10# pragma warning(disable: 4275)
11# ifdef _WINDLL
12# define DLL __declspec(dllexport)
13# else
14# define DLL __declspec(dllimport)
15# endif
16#elif defined(__unix__)
17# define DLL __attribute__((visibility("default")))
18#endif
19
20#define _WIN32_WINNT 0x600
21#ifdef _WIN32
22 #include <SDKDDKVer.h>
23#endif