#ifndef _WORLD_INTF #define _WORLD_INTF #include #include "world_exports.h" #include "world_types.h" #include #include #include /* * World ABI: worlds must export these symbols. * * This header is intended to be included by world implementations. */ #define DECLARE_WORLD_EXPORT(ret, name, args) ret name args; ARKWORLD_EXPORTS(DECLARE_WORLD_EXPORT) #undef DECLARE_WORLD_EXPORT #endif /* _WORLD_INTF */