File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -123,5 +123,6 @@ cc_library(
123
123
":meta" ,
124
124
":serialize" ,
125
125
":static" ,
126
+ ":async" ,
126
127
],
127
128
)
Original file line number Diff line number Diff line change 10
10
#include "ecsact/runtime/static.h"
11
11
#include "ecsact/runtime/meta.h"
12
12
#include "ecsact/runtime/serialize.h"
13
+ #include "ecsact/runtime/async.h"
13
14
14
- #define FOR_EACH_ECSACT_API_FN (fn , ...) \
15
- FOR_EACH_ECSACT_CORE_API_FN(fn, __VA_ARGS__); \
16
- FOR_EACH_ECSACT_DYNAMIC_API_FN(fn, __VA_ARGS__); \
17
- FOR_EACH_ECSACT_META_API_FN(fn, __VA_ARGS__); \
18
- FOR_EACH_ECSACT_STATIC_API_FN(fn, __VA_ARGS__); \
19
- FOR_EACH_ECSACT_SERIALIZE_API_FN(fn, __VA_ARGS__)
15
+ #define FOR_EACH_ECSACT_API_FN (fn , ...) \
16
+ FOR_EACH_ECSACT_CORE_API_FN(fn, __VA_ARGS__); \
17
+ FOR_EACH_ECSACT_DYNAMIC_API_FN(fn, __VA_ARGS__); \
18
+ FOR_EACH_ECSACT_META_API_FN(fn, __VA_ARGS__); \
19
+ FOR_EACH_ECSACT_STATIC_API_FN(fn, __VA_ARGS__); \
20
+ FOR_EACH_ECSACT_SERIALIZE_API_FN(fn, __VA_ARGS__); \
21
+ FOR_EACH_ECSACT_ASYNC_API_FN(fn, __VA_ARGS__)
20
22
21
23
#endif // ECSACT_RUNTIME_H
You can’t perform that action at this time.
0 commit comments