18 lines
423 B
C
18 lines
423 B
C
#define VOTE_FILE "movie.vote"
|
|
#define ADDR_FILE "movie.addr"
|
|
#define HTML_FILE "movie.html"
|
|
#define VALID_REFERER "http://neil.chaosnet.org/multiverse/"
|
|
#define VOTE_TITLE "Which movie should we watch?"
|
|
#define VOTE_BACK "<a href = \"/multiverse/\">Multiverse</a>"
|
|
|
|
/*#define VOTES(X) \
|
|
X('a', "A"), \
|
|
X('b', "B"), \
|
|
X('c', "C")*/
|
|
|
|
static struct vote votes[] = {
|
|
{ "A", 0, 'a' },
|
|
{ "B", 0, 'b' },
|
|
{ "C", 0, 'c' }
|
|
};
|