You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
466 B
13 lines
466 B
#ifndef GOPHER_H
|
|
#define GOPHER_H
|
|
|
|
#define CGIT_GOPHER_HOST "localhost"
|
|
#define CGIT_GOPHER_PORT 1500
|
|
|
|
void cgit_gopher_selector(char type, char *str, char *sel, char *host, int port);
|
|
void cgit_gopher_info(char *msg, char *host, int port);
|
|
void cgit_gopher_menu(char *descr, char *sel, char *host, int port);
|
|
void cgit_gopher_textfile(char *descr, char *sel, char *host, int port);
|
|
void cgit_gopher_error(char *descr, char *host, int port);
|
|
|
|
#endif /* GOPHER_H */
|
|
|