Minor decompiling in JSRF/Core

This commit is contained in:
KeybadeBlox 2026-01-02 23:14:59 -05:00
parent 1b08163c08
commit 4dae5206c0
3 changed files with 40 additions and 15 deletions

View file

@ -21,8 +21,11 @@ typedef unsigned char BYTE;
typedef unsigned short WORD;
typedef unsigned long DWORD;
typedef int BOOL;
typedef float FLOAT;
typedef void VOID;
typedef void * LPVOID;
typedef unsigned long SIZE_T;
typedef float FLOAT;
typedef int BOOL;
#define TRUE 1
#define FALSE 0
@ -46,4 +49,14 @@ typedef long HRESULT;
#define ERROR_SUCCESS 0L
#define E_OUTOFMEMORY 0x8007000EL
// Standard Win32 functions
VOID __stdcall Sleep(DWORD dwMilliseconds);
LPVOID __stdcall VirtualAlloc(
LPVOID lpAddress,
SIZE_T dwSize,
DWORD flAllocationType,
DWORD flProtect
);
#endif