Subversion Repositories WoWGM

Rev

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

Rev 7 Rev 32
Line 1... Line 1...
1
#ifndef  _CGLUEMGR_H
1
#ifndef  _CGLUEMGR_H
2
#define  _CGLUEMGR_H
2
#define  _CGLUEMGR_H
3
 
3
 
4
#include <Console/ConsoleClient.h>
4
#include <Console/ConsoleClient.h>
5
 
5
 
-
 
6
 
6
namespace WowGM {
7
namespace WowGM {
7
 
8
 
8
	namespace CGlueMgr {
9
	namespace CGlueMgr {
9
 
10
 
-
 
11
		//=======================================================================
10
		void Initialize ();
12
		void Initialize ();
-
 
13
 
-
 
14
		//=======================================================================
11
		void SetLoginPassword ();
15
		void SetLoginPassword ();
-
 
16
 
-
 
17
		//=======================================================================
12
		void Shutdown ();
18
		void Shutdown ();
-
 
19
 
-
 
20
		//=======================================================================
13
		void RegisterConsoleCommands ();
21
		void RegisterConsoleCommands ();
-
 
22
 
-
 
23
		//=======================================================================
14
		void UnregisterConsoleCommands ();
24
		void UnregisterConsoleCommands ();
15
 
25
 
16
	};
26
	};
17
 
27
 
18
};
28
};
Line 21... Line 31...
21
 
31
 
22
class CGlueMgr {
32
class CGlueMgr {
23
 
33
 
24
	public:
34
	public:
25
 
35
 
-
 
36
    //===========================================================================
-
 
37
    static void Initialize ();
-
 
38
 
-
 
39
		//=======================================================================
26
		static int NetDisconnectHandler (void const *, void *);
40
		static int NetDisconnectHandler (void const *, void *);
-
 
41
 
-
 
42
		//=======================================================================
27
		static void Resume (int initialized);
43
		static void Resume (int initialized);
-
 
44
 
-
 
45
		//=======================================================================
28
		static void Suspend ();
46
		static void Suspend ();
29
		static void Shutdown ();
-
 
30
 
47
 
-
 
48
		//=======================================================================
31
	//protected:
49
		static void Shutdown ();
32
	
50
	
-
 
51
		//=======================================================================
33
		static void RegisterConsoleCommands ();
52
		static void RegisterConsoleCommands ();
-
 
53
 
-
 
54
		//=======================================================================
34
		static void UnregisterConsoleCommands ();
55
		static void UnregisterConsoleCommands ();
35
 
56
 
36
};
57
};
37
 
58
 
38
#endif// _CGLUEMGR_H
59
#endif// _CGLUEMGR_H
-
 
60