11 lines
303 B
C
11 lines
303 B
C
#ifndef SERVER_TYPES_H
|
|
#define SERVER_TYPES_H
|
|
|
|
typedef struct mg_callbacks mg_callbacks;
|
|
typedef struct mg_context mg_context;
|
|
typedef struct mg_connection mg_connection;
|
|
typedef struct mg_request_info mg_request_info;
|
|
typedef struct mg_form_data_handler mg_form_data_handler;
|
|
|
|
#endif // SERVER_TYPES_H
|