12 lines
216 B
C
12 lines
216 B
C
// STL Exceptions
|
|
#include <exception>
|
|
#include <stdexcept>
|
|
|
|
// Memory Management
|
|
#include <memory>
|
|
|
|
// Platform specific: Windows
|
|
#include <windows.h>
|
|
|
|
// Macros
|
|
#define DLL_EXPORT extern "C" //__declspec(dllexport)
|