implemented userdata plugin

This commit is contained in:
aap
2017-08-23 12:21:23 +02:00
parent efec4e5acc
commit 6d38dea0d9
9 changed files with 563 additions and 10 deletions

View File

@@ -204,14 +204,11 @@ int WINAPI
WinMain(HINSTANCE instance, HINSTANCE,
PSTR cmdLine, int showCmd)
{
char *argv[1] = {
"clumpview",
};
AllocConsole();
freopen("CONIN$", "r", stdin);
freopen("CONOUT$", "w", stdout);
freopen("CONOUT$", "w", stderr);
return main(1, argv);
return main(__argc, __argv);
}
#endif