-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.h
executable file
·116 lines (112 loc) · 1.18 KB
/
common.h
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#ifndef __COMMON_H__
#define __COMMON_H__
typedef struct _course_ids
{
int course_id;
int view_id;
}course_t;
course_t course_ids[] ={
{1,45},
{5,13},
{7,43},
{9,41},
{11,39},
{13,37},
{15,35},
{17,33},
{19,31},
{21,29},
{23,27},
{29,53},
{31,55},
{33,47},
{35,49},
{37,51},
{38,56},
{40,60},
{42,58},
{44,62},
{46,64},
{48,66},
{50,68},
{52,70},
{54,72},
{56,74},
{58,76},
{60,78},
{62,80},
{64,82},
{66,84},
{68,86},
{70,88},
{72,90},
{74,92},
{80,94},
{82,96},
{84,100},
{86,106},
{88,102},
{90,108},
{92,110},
{94,114},
{95,115},
{97,117},
{99,119},
{101,121},
{103,123},
{105,125},
{107,127},
{109,129},
{111,131},
{113,133},
{115,135},
{117,137},
{119,139},
{121,141},
{123,143},
{125,145},
{127,147},
{129,149},
{131,151},
{133,153},
{135,155},
{137,159},
{139,161},
{141,157},
{143,163},
{145,165},
{147,167},
{149,169},
{151,171},
{153,173},
{163,175},
{165,177},
{167,179},
{169,181},
{171,183},
{173,185},
{175,187},
{177,189},
{179,191},
{181,195},
{183,197},
{185,199},
{187,201},
{189,203},
{191,205},
{193,207},
{195,209},
{197,211},
{199,213},
{201,215},
{203,217},
{205,219},
{207,221},
{209,223},
{211,225},
{213,227},
{215,229},
{217,231},
{219,233},
};
#endif