Subversion Repositories WoWGM

Rev

Rev 31 | Rev 33 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 31 Rev 32
Line 14... Line 14...
14
*
14
*
15
*   Client memory addresses
15
*   Client memory addresses
16
*
16
*
17
***/
17
***/
18
 
18
 
19
#define  INSTALLGAMECONSOLECOMMANDSPTR    0x00407870;
19
#define  INSTALLGAMECONSOLECOMMANDSPTR    0x00407870
20
#define  UNINSTALLGAMECONSOLECOMMANDSPTR  0x00406EF0;
20
#define  UNINSTALLGAMECONSOLECOMMANDSPTR  0x00406EF0
21
 
21
 
22
 
22
 
23
/****************************************************************************
23
/****************************************************************************
24
*
24
*
25
*   Client function pointers
25
*   Client function pointers
Line 102... Line 102...
102
	DETOUR_INIT;	
102
	DETOUR_INIT;	
103
	DETOUR_DETACH(InstallGameConsoleCommandsPtr,::InstallGameConsoleCommands);
103
	DETOUR_DETACH(InstallGameConsoleCommandsPtr,::InstallGameConsoleCommands);
104
	DETOUR_DETACH(UninstallGameConsoleCommandsPtr,::UninstallGameConsoleCommands);
104
	DETOUR_DETACH(UninstallGameConsoleCommandsPtr,::UninstallGameConsoleCommands);
105
	DETOUR_COMMIT;
105
	DETOUR_COMMIT;
106
}
106
}
-
 
107