mirror of
https://github.com/decompals/wibo.git
synced 2025-12-12 14:46:09 +00:00
More msvcrt (WIP quality) and various fixes
This commit is contained in:
@@ -1,14 +1,17 @@
|
||||
#include "common.h"
|
||||
|
||||
namespace mscoree {
|
||||
void WIN_FUNC CorExitProcess(int exitCode) {
|
||||
exit(exitCode);
|
||||
}
|
||||
|
||||
void WIN_FUNC CorExitProcess(int exitCode) {
|
||||
DEBUG_LOG("CorExitProcess(%i)\n", exitCode);
|
||||
exit(exitCode);
|
||||
}
|
||||
|
||||
} // namespace mscoree
|
||||
|
||||
static void *resolveByName(const char *name) {
|
||||
if (strcmp(name, "CorExitProcess") == 0) return (void *) mscoree::CorExitProcess;
|
||||
if (strcmp(name, "CorExitProcess") == 0)
|
||||
return (void *)mscoree::CorExitProcess;
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user