![]() |
Blamite Game Engine - Strings
00326.06.27.21.0407.blamite
A library containing general purpose utilities and classes for use in multiple projects.
|
Namespace for anything related to configuration files. More...
Functions | |
STRINGS_API BlamResult | LoadConfiguration (std::string filename, std::string comment_delimeter, OUT BlamConfigurationFile **file) |
Loads a new configuration file from disk. More... | |
STRINGS_API BlamResult | LoadConfiguration (std::string filename, std::string comment_delimeter, HMODULE dll_handle, int defaults_resource_id, OUT BlamConfigurationFile **file) |
Loads a new configuration file from disk. More... | |
STRINGS_API BlamResult | LoadConfiguration (std::string filename, std::string comment_delimeter, HMODULE dll_handle, int defaults_resource_id, std::string defaults_resource_type, OUT BlamConfigurationFile **file) |
Loads a new configuration file from disk. More... | |
Namespace for anything related to configuration files.
BlamResult BlamStrings::Settings::Config::LoadConfiguration | ( | std::string | filename, |
std::string | comment_delimeter, | ||
HMODULE | dll_handle, | ||
int | defaults_resource_id, | ||
OUT BlamConfigurationFile ** | file | ||
) |
Loads a new configuration file from disk.
filename | - The name/path to the configuration file to load. |
comment_delimeter | - The string or character used to indicate a comment within the file. |
file | - Pointer to the pointer to set to the loaded configuration data. Will only be set if the file is loaded properly. |
dll_handle | - The module containing the default configuration file contents. |
defaults_resource_id | - The ID of the resource containing the default configuration file contents. |
BlamResult BlamStrings::Settings::Config::LoadConfiguration | ( | std::string | filename, |
std::string | comment_delimeter, | ||
HMODULE | dll_handle, | ||
int | defaults_resource_id, | ||
std::string | defaults_resource_type, | ||
OUT BlamConfigurationFile ** | file | ||
) |
Loads a new configuration file from disk.
filename | - The name/path to the configuration file to load. |
comment_delimeter | - The string or character used to indicate a comment within the file. |
file | - Pointer to the pointer to set to the loaded configuration data. Will only be set if the file is loaded properly. |
dll_handle | - The module containing the default configuration file contents. |
defaults_resource_id | - The ID of the resource containing the default configuration file contents. |
defaults_resource_type | - The type of resource that defaults_resource_id is stored as within the module. |
BlamResult BlamStrings::Settings::Config::LoadConfiguration | ( | std::string | filename, |
std::string | comment_delimeter, | ||
OUT BlamConfigurationFile ** | file | ||
) |
Loads a new configuration file from disk.
filename | - The name/path to the configuration file to load. |
comment_delimeter | - The string or character used to indicate a comment within the file. |
file | - Pointer to the pointer to set to the loaded configuration data. Will only be set if the file is loaded properly. |