Files
Reboot-Launcher/redirect/Main.cpp
Alessandro Autiero dfebe74518 Switched to sinum
2024-10-21 20:32:23 +02:00

21 lines
319 B
C++

// Copyright (c) 2024 Project Nova LLC
#include "framework.h"
static void Main()
{
Sleep(7500);
Core::Init();
Sinum::Init();
}
bool DllMain(HMODULE hModule, DWORD dwReason, void* lpReserved)
{
if (dwReason == DLL_PROCESS_ATTACH)
{
Windows::Thread::Create(Main);
}
return true;
}