TerminalManager.h
606 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
TerminalManager header file. We will be using this class
as an example for Object Oriented Programming in C.
*/
#include "Terminal.h"
#define MAX_TERMINALS 500
/* Structure contains all data used by the Terminal Manager. */
typedef struct
{
Terminal terminals[MAX_TERMINALS];
} TerminalManager;
/*
ANSI C Function prototypes of all functions that operate
on the TerminalManager structure.
*/
void TerminalManager_Construct(TerminalManager *pMgr);
void TerminalManager_Destroy(TerminalManager *pMgr);
void TerminalManager_HandleMessage(TerminalManager *pMgr, Msg* pMsg);