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(
123123 ":meta" ,
124124 ":serialize" ,
125125 ":static" ,
126+ ":async" ,
126127 ],
127128)
Original file line number Diff line number Diff line change 1010#include "ecsact/runtime/static.h"
1111#include "ecsact/runtime/meta.h"
1212#include "ecsact/runtime/serialize.h"
13+ #include "ecsact/runtime/async.h"
1314
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__)
2022
2123#endif // ECSACT_RUNTIME_H
You can’t perform that action at this time.
0 commit comments