-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathhtmlPages.hh
56 lines (29 loc) · 936 Bytes
/
htmlPages.hh
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
#ifndef _HTMLPAGES_
#define _HTMLPAGES_
#include <string>
using namespace std;
extern string askpage_head;
extern string askpage_tail;
extern string cannotcompile;
extern string nosha1present;
extern string invalidosorarchitecture;
extern string invalidinstruction;
extern string busypage;
extern string completebuterrorpage;
extern string completebutmorethanoneDSPfile;
extern string completebutnoDSPfile;
extern string completebutdecompressionproblem;
extern string completebutendoftheworld;
extern string completebutnopipe;
extern string completebutnohash;
extern string completebutcorrupt_head;
extern string completebutcorrupt_tail;
extern string completebutalreadythere_head;
extern string completebutalreadythere_tail;
extern string completepage_head;
extern string completepage_tail;
extern string errorpage;
extern string servererrorpage;
extern string fileexistspage;
extern string debugstub;
#endif