1 |
douglas |
131 |
// CGI Renegade Map Selector |
2 |
|
|
// |
3 |
|
|
// Douglas Thrift |
4 |
|
|
// |
5 |
|
|
// CGIRenegadeMapSelector.cpp |
6 |
|
|
|
7 |
|
|
#include "CGIRenegadeMapSelector.h" |
8 |
|
|
#include "RenegadeConfig.h" |
9 |
|
|
|
10 |
douglas |
134 |
#include <cgicc/Cgicc.h> |
11 |
|
|
|
12 |
|
|
using namespace cgicc; |
13 |
|
|
|
14 |
douglas |
131 |
bool debug = false; |
15 |
|
|
string program; |
16 |
douglas |
134 |
Cgicc cgi; |
17 |
douglas |
131 |
RenegadeConfig* config; |
18 |
|
|
|
19 |
douglas |
134 |
int main(int argc, char* argv[], char** env) |
20 |
douglas |
131 |
{ |
21 |
douglas |
134 |
cout << "Content-Type: text/html\n\n"; |
22 |
|
|
|
23 |
douglas |
131 |
// |
24 |
|
|
|
25 |
|
|
return 0; |
26 |
|
|
} |