mirror of
https://github.com/halpz/re3.git
synced 2025-06-29 17:26:21 +00:00
rem refs
This commit is contained in:
@ -17,8 +17,7 @@ static RwBool DefaultVideoMode = TRUE;
|
||||
|
||||
bool TurnOnAnimViewer = false;
|
||||
|
||||
//RsGlobalType RsGlobal;
|
||||
RsGlobalType &RsGlobal = *(RsGlobalType*)0x8F4360;
|
||||
RsGlobalType RsGlobal;
|
||||
|
||||
RwUInt32
|
||||
RsTimer(void)
|
||||
|
@ -232,7 +232,7 @@ enum RsPadButtons
|
||||
typedef enum RsPadButtons RsPadButtons;
|
||||
|
||||
|
||||
extern RsGlobalType &RsGlobal;
|
||||
extern RsGlobalType RsGlobal;
|
||||
|
||||
extern RsEventStatus AppEventHandler(RsEvent event, void *param);
|
||||
extern RwBool AttachInputDevices(void);
|
||||
|
@ -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)) */
|
||||
|
Reference in New Issue
Block a user