Grindstone Game Engine
v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
DLLDefs.hpp
1
#ifndef _DEF_DLL_H
2
#define _DEF_DLL_H
3
4
#ifdef _WIN32
5
#ifdef GRAPHICS_DLL
6
#define GRAPHICS_EXPORT_CLASS __declspec(dllexport)
7
#define GRAPHICS_EXPORT __declspec(dllexport)
8
#else
9
#define GRAPHICS_EXPORT_CLASS __declspec(dllimport)
10
#define GRAPHICS_EXPORT __declspec(dllimport)
11
#endif
12
#else
13
#define GRAPHICS_EXPORT_CLASS
14
#define GRAPHICS_EXPORT
15
#endif
16
17
#endif
sources
code
Common
Graphics
DLLDefs.hpp
Generated by
1.12.0