mirror of
https://codeberg.org/KeybadeBlox/JSRF-Decompilation.git
synced 2026-04-07 04:50:23 +03:00
Minor decompiling in JSRF/Core
This commit is contained in:
parent
1b08163c08
commit
4dae5206c0
3 changed files with 40 additions and 15 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue