pureikyubu/SRC/HighLevel/HLE.h
2020-08-06 22:47:44 +03:00

23 lines
439 B
C

#pragma once
void os_ignore();
void os_ret0();
void os_ret1();
void os_trap();
// HLE state variables
struct HLEControl
{
// current loaded map file
wchar_t mapfile[0x1000];
};
extern HLEControl hle;
void HLESetCall(const char *name, void (*call)());
void HLEInit();
void HLEShutdown();
void HLEOpen();
void HLEClose();
void HLEExecuteCallback(uint32_t entryPoint);