Elaztek Developer Hub
Blamite Game Engine - Tool (Library)
A command-line utility that aids in the creation of Blamite Cache (.map) Files.
tool.h
Go to the documentation of this file.
1 // Blamite Game Engine - HEKTool.dll Core Header //
3 // Copyright (c) 2013-2021 Elaztek Studios //
5 
6 #pragma once
7 
8 #define WIN32_LEAN_AND_MEAN
9 #include <windows.h>
10 
11 #ifdef TOOL_LIB_EXPORTS
12 #define TOOL_LIB_API __declspec(dllexport)
13 #else
14 #define TOOL_LIB_API __declspec(dllimport)
15 #endif
16 
20 namespace BlamTool
21 {
26 }
BlamTool::GetToolDLLHandle
TOOL_LIB_API HMODULE GetToolDLLHandle()
Retrieves the Tool module handle.
Definition: main.cpp:29
tool.h
dll_handle
HMODULE dll_handle
Handle for HEKTool.dll.
Definition: main.cpp:3
BlamTool
Namespace containing functions for Tool.
Definition: console.h:17
DllMain
BOOL APIENTRY DllMain(HMODULE module_handle, DWORD reason_for_call, LPVOID reserved)
DLL entry point for HEKTool.dll.
Definition: main.cpp:15
TOOL_LIB_API
#define TOOL_LIB_API
Definition: tool.h:14