mirror of
https://github.com/Auties00/Reboot-Launcher.git
synced 2026-01-13 11:12:23 +01:00
21 lines
319 B
C++
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;
|
|
} |