oops, remove that
haldean
1 year, 1 month ago
0 | |
#ifdef __cplusplus
|
1 | |
#define EXPORT extern "C"
|
2 | |
#else
|
3 | |
#define EXPORT
|
4 | |
#endif
|
5 | |
|
6 | |
struct qb_context;
|
7 | |
EXPORT qb_context * qb_init();
|
8 | |
EXPORT void qb_frame(qb_context *ctx);
|
9 | |
EXPORT void qb_shutdown(qb_context *ctx);
|
10 | |
|
11 | |
#undef EXPORT
|