summaryrefslogtreecommitdiffstats
path: root/uidmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'uidmap.h')
-rw-r--r--uidmap.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/uidmap.h b/uidmap.h
new file mode 100644
index 0000000..a126e39
--- /dev/null
+++ b/uidmap.h
@@ -0,0 +1,16 @@
+#ifndef _UIDMAP_H_
+#define _UIDMAP_H_
+
+#include <stdint.h>
+
+struct string;
+
+uint32_t uidmap_getNumberForName(const struct string *name);
+
+const struct string *uidmap_getNameForNumber(const uint32_t number);
+
+void uidmap_init(const char *fileName);
+
+void uidmap_cleanupSave();
+
+#endif