Subversion Repositories WoWGM

Rev

Rev 3 | Rev 32 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3 tristanc 1
#ifndef  _CGLUEMGR_H
2
#define  _CGLUEMGR_H
3
 
7 tristanc 4
#include <Console/ConsoleClient.h>
5
 
3 tristanc 6
namespace WowGM {
7
 
8
	namespace CGlueMgr {
9
 
10
		void Initialize ();
7 tristanc 11
		void SetLoginPassword ();
3 tristanc 12
		void Shutdown ();
13
		void RegisterConsoleCommands ();
14
		void UnregisterConsoleCommands ();
15
 
7 tristanc 16
	};
3 tristanc 17
 
7 tristanc 18
};
3 tristanc 19
 
7 tristanc 20
extern CVar* g_password;
3 tristanc 21
 
22
class CGlueMgr {
23
 
24
	public:
25
 
7 tristanc 26
		static int NetDisconnectHandler (void const *, void *);
3 tristanc 27
		static void Resume (int initialized);
28
		static void Suspend ();
29
		static void Shutdown ();
30
 
31
	//protected:
32
 
33
		static void RegisterConsoleCommands ();
34
		static void UnregisterConsoleCommands ();
35
 
36
};
37
 
38
#endif// _CGLUEMGR_H