summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/extensible.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/extensible.h b/include/extensible.h
index 40e820d68..f327cf75c 100644
--- a/include/extensible.h
+++ b/include/extensible.h
@@ -17,6 +17,11 @@
*/
+#ifndef EXTENSIBLE_H
+#define EXTENSIBLE_H
+
+#include <stdint.h>
+
enum SerializeFormat
{
/** Shown to a human (does not need to be unserializable) */
@@ -185,3 +190,5 @@ class CoreExport StringExtItem : public ExtensionItem
void unset(Extensible* container);
void free(void* item);
};
+
+#endif