mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-19 07:21:20 +03:00
21 lines
300 B
C
Executable File
21 lines
300 B
C
Executable File
#include <windows.h>
|
|
#include "argcargv.h"
|
|
#include "init.h"
|
|
|
|
int main(int, char **);
|
|
|
|
void mainCRTStartup(void)
|
|
{
|
|
int mainret, argc;
|
|
|
|
argc = _ConvertCommandLineToArgcArgv();
|
|
|
|
__init();
|
|
|
|
mainret = main(argc, _ppszArgv);
|
|
|
|
__exit();
|
|
|
|
ExitProcess(mainret);
|
|
}
|