Minor patch - Log system + Exécutable fonctionnel

Feat :

+ Log systeme
This commit is contained in:
2024-04-10 13:04:34 +02:00
parent 05f12d15f9
commit d644d6966d
15 changed files with 683 additions and 406 deletions

View File

@@ -5,6 +5,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR pScmdline,
{
SystemClass* System;
bool result;
Logger logger;
// Create the system object.
@@ -14,6 +15,7 @@ int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR pScmdline,
result = System->Initialize();
if (result)
{
logger.Log("System initialized", __FILE__, __LINE__);
System->Run();
}