12 lines
268 B
C
12 lines
268 B
C
#ifndef SERVER_TYPES_H
|
|
#define SERVER_TYPES_H
|
|
|
|
#include <civetweb.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;
|
|
|
|
#endif // SERVER_TYPES_H
|