-
Notifications
You must be signed in to change notification settings - Fork 3
/
flecs_systems_civetweb.h
89 lines (69 loc) · 2.18 KB
/
flecs_systems_civetweb.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
// Comment out this line when using as DLL
#define flecs_systems_civetweb_STATIC
#ifndef FLECS_SYSTEMS_CIVETWEB_H
#define FLECS_SYSTEMS_CIVETWEB_H
/*
)
(.)
.|.
| |
_.--| |--._
.-'; ;`-'& ; `&.
\ & ; & &_/
|"""---...---"""|
\ | | | | | | | /
`---.|.|.|.---'
* This file is generated by bake.lang.c for your convenience. Headers of
* dependencies will automatically show up in this file. Include bake_config.h
* in your main project file. Do not edit! */
#ifndef FLECS_SYSTEMS_CIVETWEB_BAKE_CONFIG_H
#define FLECS_SYSTEMS_CIVETWEB_BAKE_CONFIG_H
/* Headers of public dependencies */
#include <flecs.h>
#include <flecs_components_http.h>
/* Convenience macro for exporting symbols */
#ifndef flecs_systems_civetweb_STATIC
#if flecs_systems_civetweb_EXPORTS && (defined(_MSC_VER) || defined(__MINGW32__))
#define FLECS_SYSTEMS_CIVETWEB_API __declspec(dllexport)
#elif flecs_systems_civetweb_EXPORTS
#define FLECS_SYSTEMS_CIVETWEB_API __attribute__((__visibility__("default")))
#elif defined _MSC_VER
#define FLECS_SYSTEMS_CIVETWEB_API __declspec(dllimport)
#else
#define FLECS_SYSTEMS_CIVETWEB_API
#endif
#else
#define FLECS_SYSTEMS_CIVETWEB_API
#endif
#endif
#ifdef __cplusplus
extern "C" {
#endif
typedef struct FlecsSystemsCivetweb {
ECS_DECLARE_ENTITY(CivetServer);
} FlecsSystemsCivetweb;
FLECS_SYSTEMS_CIVETWEB_API
void FlecsSystemsCivetwebImport(
ecs_world_t *world);
#define FlecsSystemsCivetwebImportHandles(handles)\
ECS_IMPORT_ENTITY(handles, CivetServer);
#ifdef __cplusplus
}
#endif
#ifdef __cplusplus
#ifndef FLECS_NO_CPP
namespace flecs {
namespace systems {
class civetweb : public FlecsSystemsCivetweb {
public:
civetweb(flecs::world& world) {
FlecsSystemsCivetwebImport(world.c_ptr());
flecs::module<flecs::systems::civetweb>(
world, "flecs::systems::civetweb");
}
};
}
}
#endif // FLECS_NO_CPP
#endif // __cplusplus
#endif