Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 0846564bc1014267dc1f7ee86ec7fce2fc94e65e (plain) (blame)
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



typedef struct MyActor MyActor;

typedef struct MyActor_const {
	const MyActor* actor;
}MyActor_const;

struct MyActor {
	const MyActor_const* constData;
};

static MyActor Actor1;
static MyActor Actor2;

static const MyActor_const Actor1_const = {&Actor1};
static const MyActor_const Actor2_const = {&Actor2};

static MyActor Actor1 = {&Actor1_const};
static MyActor Actor2 = {&Actor2_const};;


//*****************************
enum ProtocolName_MsgIds {
	ProtocolName_
};


Back to the top