63 lines
1.4 KiB
C
63 lines
1.4 KiB
C
|
#pragma once
|
||
|
|
||
|
#if defined(NDEBUG)
|
||
|
#define LWE_RELEASE
|
||
|
#else
|
||
|
#define LWE_DEBUG
|
||
|
#endif
|
||
|
|
||
|
#include "Types.h"
|
||
|
#include "System/OS.h"
|
||
|
#include "Version.h"
|
||
|
#include "Str.h"
|
||
|
|
||
|
namespace lwe
|
||
|
{
|
||
|
enum class MemoryPattern
|
||
|
{
|
||
|
SPEED,
|
||
|
SIZE
|
||
|
};
|
||
|
|
||
|
/// Retrieves the UTF32 C-style string as "Event Horizon Standard"
|
||
|
/// @returns The result.
|
||
|
const Char_32* GetName_32();
|
||
|
|
||
|
/// Retrieves the UTF16 C-style string as "Event Horizon Standard"
|
||
|
/// @returns The result.
|
||
|
const Char_16* GetName_16();
|
||
|
|
||
|
/// Retrieves the UTF8 C-style string as "Event Horizon Standard"
|
||
|
/// @returns The result.
|
||
|
const Char_8* GetName_8();
|
||
|
|
||
|
Str_8 GetAppName_8();
|
||
|
|
||
|
const Char_32* GetAcronym_32();
|
||
|
|
||
|
const Char_16* GetAcronym_16();
|
||
|
|
||
|
const Char_8* GetAcronym_8();
|
||
|
|
||
|
/// Retrieves the version identifier in UTF32.
|
||
|
/// @returns The result.
|
||
|
const Char_32* GetVersionId_32();
|
||
|
|
||
|
/// Retrieves the version identifier in UTF16.
|
||
|
/// @returns The result.
|
||
|
const Char_16* GetVersionId_16();
|
||
|
|
||
|
/// Retrieves the version identifier in UTF8.
|
||
|
/// @returns The result.
|
||
|
const Char_8* GetVersionId_8();
|
||
|
|
||
|
Str_8 GetAppVersionId_8();
|
||
|
|
||
|
/// Retrieves the current Event Horizon Standard version.
|
||
|
/// @returns The result.
|
||
|
Version GetVersion();
|
||
|
|
||
|
Version GetAppVersion();
|
||
|
};
|
||
|
|
||
|
extern lwe::SInt_32 Main(lwe::Str_8* appName, lwe::Str_8* appVerId, lwe::Version* appVer);
|