mirror of
https://github.com/entropy-z/Kharon
synced 2026-06-06 15:34:34 +00:00
16 lines
245 B
C++
16 lines
245 B
C++
#include <Kharon.h>
|
|
|
|
|
|
auto Runner( VOID ) -> VOID {
|
|
EntryLoader();
|
|
}
|
|
|
|
auto WINAPI WinMain(
|
|
_In_ HINSTANCE Instance,
|
|
_In_ HINSTANCE PrevInstance,
|
|
_In_ CHAR* CommandLine,
|
|
_In_ INT32 ShowCmd
|
|
) -> INT32 {
|
|
Runner();
|
|
}
|