Added shared library support.

This commit is contained in:
2024-07-24 01:36:20 -07:00
parent 1b70383448
commit 8e7cc39000
122 changed files with 298 additions and 298 deletions

View File

@@ -13,51 +13,53 @@
namespace ehs
{
enum class MemoryPattern
enum class MemoryPattern
{
SPEED,
SIZE
};
EHS_LIB_IO void Initialize(Str_8 appName, Str_8 appVerId, const Version &appVer);
EHS_LIB_IO void Uninitialize();
/// Retrieves the UTF32 C-style string as "Event Horizon Standard"
/// @returns The result.
const Char_32* GetName_32();
EHS_LIB_IO const Char_32* GetName_32();
/// Retrieves the UTF16 C-style string as "Event Horizon Standard"
/// @returns The result.
const Char_16* GetName_16();
EHS_LIB_IO const Char_16* GetName_16();
/// Retrieves the UTF8 C-style string as "Event Horizon Standard"
/// @returns The result.
const Char_8* GetName_8();
EHS_LIB_IO const Char_8* GetName_8();
Str_8 GetAppName_8();
EHS_LIB_IO Str_8 GetAppName_8();
const Char_32* GetAcronym_32();
EHS_LIB_IO const Char_32* GetAcronym_32();
const Char_16* GetAcronym_16();
EHS_LIB_IO const Char_16* GetAcronym_16();
const Char_8* GetAcronym_8();
EHS_LIB_IO const Char_8* GetAcronym_8();
/// Retrieves the version identifier in UTF32.
/// @returns The result.
const Char_32* GetVersionId_32();
EHS_LIB_IO const Char_32* GetVersionId_32();
/// Retrieves the version identifier in UTF16.
/// @returns The result.
const Char_16* GetVersionId_16();
EHS_LIB_IO const Char_16* GetVersionId_16();
/// Retrieves the version identifier in UTF8.
/// @returns The result.
const Char_8* GetVersionId_8();
EHS_LIB_IO const Char_8* GetVersionId_8();
Str_8 GetAppVersionId_8();
EHS_LIB_IO Str_8 GetAppVersionId_8();
/// Retrieves the current Event Horizon Standard version.
/// @returns The result.
Version GetVersion();
EHS_LIB_IO Version GetVersion();
Version GetAppVersion();
};
extern ehs::SInt_32 Main(ehs::Str_8* appName, ehs::Str_8* appVerId, ehs::Version* appVer);
EHS_LIB_IO Version GetAppVersion();
};