diff options
Diffstat (limited to 'src/world.h')
-rw-r--r-- | src/world.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/world.h b/src/world.h new file mode 100644 index 00000000..39fdf5e0 --- /dev/null +++ b/src/world.h @@ -0,0 +1,14 @@ +// Copyright 2011-2020 David Robillard <d@drobilla.net> +// SPDX-License-Identifier: ISC + +#ifndef SERD_SRC_WORLD_H +#define SERD_SRC_WORLD_H + +#include "serd/error.h" + +struct SerdWorldImpl { + SerdErrorFunc error_func; + void* error_handle; +}; + +#endif // SERD_SRC_WORLD_H |