38af4e7491
- Added and updated examples for more advanced usage. - Added Direct Memory Access (DMA) functions, use with caution. - Fixed a backwards instruction jump caused by using __cdecl instead of __stdcall. - Removed string return type as it caused an unsolvable memory leak.
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)
|