diff options
Diffstat (limited to 'src/world.h')
-rw-r--r-- | src/world.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/world.h b/src/world.h index 39fdf5e0..8281bb5e 100644 --- a/src/world.h +++ b/src/world.h @@ -5,10 +5,26 @@ #define SERD_SRC_WORLD_H #include "serd/error.h" +#include "serd/status.h" +#include "serd/world.h" + +#include <stdarg.h> struct SerdWorldImpl { SerdErrorFunc error_func; void* error_handle; }; +SerdStatus +serd_world_error(const SerdWorld* world, const SerdError* e); + +SerdStatus +serd_world_errorf(const SerdWorld* world, SerdStatus st, const char* fmt, ...); + +SerdStatus +serd_world_verrorf(const SerdWorld* world, + SerdStatus st, + const char* fmt, + va_list args); + #endif // SERD_SRC_WORLD_H |