mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-09 08:30:33 +00:00
rem refs
This commit is contained in:
parent
435a9ca7f2
commit
a4922d5cb7
139 changed files with 1350 additions and 1400 deletions
|
@ -45,31 +45,25 @@
|
|||
#define MAX_SUBSYSTEMS (16)
|
||||
|
||||
|
||||
//static RwBool ForegroundApp = TRUE;
|
||||
static RwBool &ForegroundApp = *(RwBool*)0x060F000;
|
||||
static RwBool ForegroundApp = TRUE;
|
||||
|
||||
//static RwBool RwInitialised = FALSE;
|
||||
static RwBool &RwInitialised = *(RwBool*)0x885B88;
|
||||
static RwBool RwInitialised = FALSE;
|
||||
|
||||
static RwSubSystemInfo GsubSysInfo[MAX_SUBSYSTEMS];
|
||||
static RwInt32 GnumSubSystems = 0;
|
||||
static RwInt32 GcurSel = 0, GcurSelVM = 0;
|
||||
|
||||
//static RwBool startupDeactivate;
|
||||
static RwBool &startupDeactivate = *(RwBool*)0x8E2878;
|
||||
static RwBool startupDeactivate;
|
||||
|
||||
//static RwBool useDefault;
|
||||
static RwBool &useDefault = *(RwBool*)0x6510D4;
|
||||
static RwBool useDefault;
|
||||
|
||||
//static RwBool defaultFullscreenRes = TRUE;
|
||||
static RwBool &defaultFullscreenRes = *(RwBool*)0x60EFFC;
|
||||
static RwBool defaultFullscreenRes = TRUE;
|
||||
|
||||
/* Class name for the MS Window's window class. */
|
||||
|
||||
static const RwChar *AppClassName = RWSTRING("Grand theft auto 3");
|
||||
|
||||
//static psGlobalType PsGlobal;
|
||||
static psGlobalType &PsGlobal = *(psGlobalType*)0x72CF60;
|
||||
static psGlobalType PsGlobal;
|
||||
|
||||
|
||||
#define PSGLOBAL(var) (((psGlobalType *)(RsGlobal.ps))->var)
|
||||
|
@ -107,14 +101,14 @@ IMediaSeeking *pMS = nil;
|
|||
|
||||
DWORD dwDXVersion;
|
||||
DWORD _dwMemTotalPhys;
|
||||
DWORD &_dwMemAvailPhys = *(DWORD*)0x70F29C;
|
||||
DWORD _dwMemAvailPhys;
|
||||
DWORD _dwMemTotalVirtual;
|
||||
DWORD _dwMemAvailVirtual;
|
||||
DWORD &_dwMemTotalVideo = *(DWORD*)0x70F2A8;
|
||||
DWORD _dwMemTotalVideo;
|
||||
DWORD _dwMemAvailVideo;
|
||||
DWORD &_dwOperatingSystemVersion = *(DWORD*)0x70F290;
|
||||
DWORD _dwOperatingSystemVersion;
|
||||
|
||||
RwUInt32 &gGameState = *(RwUInt32*)0x8F5838;
|
||||
RwUInt32 gGameState;
|
||||
CJoySticks AllValidWinJoys;
|
||||
|
||||
CJoySticks::CJoySticks()
|
||||
|
|
|
@ -29,9 +29,9 @@ enum eWinVersion
|
|||
OS_WINXP,
|
||||
};
|
||||
|
||||
extern DWORD &_dwOperatingSystemVersion;
|
||||
extern DWORD _dwOperatingSystemVersion;
|
||||
|
||||
extern RwUInt32 &gGameState;
|
||||
extern RwUInt32 gGameState;
|
||||
|
||||
/* platform specfic global data */
|
||||
typedef struct
|
||||
|
@ -127,5 +127,5 @@ void HandleExit();
|
|||
#endif /* __cplusplus */
|
||||
|
||||
|
||||
extern DWORD &_dwOperatingSystemVersion;
|
||||
extern DWORD _dwOperatingSystemVersion;
|
||||
#endif /* (!defined(_PLATFORM_WIN_H)) */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue