Initial Commit

This commit is contained in:
Michael Fabian Dirks
2015-05-17 12:45:11 +02:00
commit 7f8416ea7d
14 changed files with 658 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
// STL Exceptions
#include <exception>
#include <stdexcept>
// Memory Management
#include <memory>
// Platform specific: Windows
#include <windows.h>
// Macros
#define DLL_EXPORT extern "C" __declspec(dllexport)
// Steam
#include "steam/steam_api.h"
// Error Messages
#define ERROR_TITLE_001 TEXT("Error 001")
#define ERROR_TEXT_001 TEXT("E001: Could not load 'BlitzPointer.dll'.")
#define ERROR_TITLE_002 TEXT("Error 002")
#define ERROR_TEXT_002 TEXT("E002: Unable to find one or multiple function addresses in 'BlitzPointer.dll'.")