You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dws/ui/ui_darwin.h

19 lines
274 B
C

8 years ago
struct RequestMeta {
char *path;
};
typedef struct RequestMeta RequestMeta;
struct ResponseMeta {
};
typedef struct ResponseMeta ResponseMeta;
8 years ago
void initialize();
int run();
void shutdown();
void set_root(char *);
8 years ago
void begin_request(RequestMeta *);
void end_request();