Elaztek Developer Hub
Blamite Game Engine - Guerilla (Stub Executable)  00326.06.27.21.0407.blamite
A small stub executable that is used to launch Guerilla.
keystone.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Windows.h>
4 #include <Strings/components/settings/config/config.h>
5 
6 #ifndef GUERILLA
7 #define GUERILLA
8 #endif
9 
15 {
21  GUERILLA bool SetupModule();
22 
26  GUERILLA void ShutdownModule();
27 
34 
47  GUERILLA int ShowErrorDialog(bool classic, bool allow_safemode, bool allow_continue, const char* text);
48 
56  GUERILLA int ShowGuerillaWindow(BlamConfigurationFile* config);
57 
65  GUERILLA BlamResult LoadResourceGroup(std::string file_path);
66 }
Guerilla::Modules::Keystone::LoadResourceGroup
GUERILLA BlamResult LoadResourceGroup(std::string file_path)
Loads a resource group for use with Keystone's UI.
Definition: keystone.cpp:89
GUERILLA
#define GUERILLA
Definition: keystone.h:7
Guerilla::Modules::Keystone::ShowGuerillaWindow
GUERILLA int ShowGuerillaWindow(BlamConfigurationFile *config)
Shows the main Guerilla window.
Definition: keystone.cpp:84
Guerilla::Modules::Keystone::ShowErrorDialog
GUERILLA int ShowErrorDialog(bool classic, bool allow_safemode, bool allow_continue, const char *text)
Shows a Qt-driven error dialog.
Definition: keystone.cpp:79
Guerilla::Modules::Keystone::ShutdownModule
GUERILLA void ShutdownModule()
Shuts down the Keystone module.
Definition: keystone.cpp:69
Guerilla::Modules::Keystone
Namespace containing functions related to the Keystone module, as well as any imported functions from...
Definition: keystone.h:14
Guerilla::Modules::Keystone::GetKeystoneModuleHandle
GUERILLA HMODULE GetKeystoneModuleHandle()
Retrieves the module handle for Keystone.
Definition: keystone.cpp:74
Guerilla::Modules::Keystone::SetupModule
GUERILLA bool SetupModule()
Attempts to initialize the Keystone module and import any needed functions.
Definition: keystone.cpp:42