Delink/begin decompiling entry point

That is, xapi0.obj, which has been renamed from crt0.obj because it
appears to be part of the Xbox libraries rather than the C runtime.
This commit is contained in:
KeybadeBlox 2026-02-20 21:50:00 -05:00
parent 9b6c91a12e
commit 9cfd8b5bf3
7 changed files with 103 additions and 41 deletions

View file

@ -25,7 +25,7 @@ typedef __int64 LONGLONG;
typedef unsigned char BYTE;
typedef unsigned short WORD;
typedef unsigned long DWORD;
typedef unsigned long DWORD, * PDWORD;
typedef void VOID;
typedef void * LPVOID;
@ -45,6 +45,8 @@ union LARGE_INTEGER {
LONGLONG QuadPart;
};
typedef void * HANDLE;
// Return codes
typedef long HRESULT;