Subversion Repositories WoWGM

Rev

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

Rev 31 Rev 32
Line 1... Line 1...
1
#include "pch.h"
1
#include "pch.h"
2
#pragma hdrstop
2
#pragma hdrstop
3
 
3
 
4
#include "ConsoleClient.h"
4
#include "ConsoleClient.h"
5
 
5
 
-
 
6
 
6
/****************************************************************************
7
/****************************************************************************
7
*
8
*
8
*   Client memory addresses
9
*   Client memory addresses
9
*
10
*
10
***/
11
***/
11
 
12
 
12
#define  CVAR__REGISTER_PTR 0x00767FC0;
13
#define  CVAR__REGISTER_PTR 0x00767FC0
13
 
14
 
14
 
15
 
15
/****************************************************************************
16
/****************************************************************************
16
*
17
*
17
*   Client function pointers
18
*   Client function pointers
Line 38... Line 39...
38
                      void*     arg,
39
                      void*     arg,
39
                      bool      a9) {
40
                      bool      a9) {
40
 
41
 
41
	return RegisterPtr(name,helpText,flags,defaultValue,fcn,category,setCommand,arg,a9);
42
	return RegisterPtr(name,helpText,flags,defaultValue,fcn,category,setCommand,arg,a9);
42
}
43
}
-
 
44