summaryrefslogtreecommitdiffstats
path: root/src/overlay.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/overlay.h')
-rw-r--r--src/overlay.h14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/overlay.h b/src/overlay.h
new file mode 100644
index 0000000..9125de0
--- /dev/null
+++ b/src/overlay.h
@@ -0,0 +1,14 @@
+#ifndef OVERLAY_H
+#define OVERLAY_H
+
+typedef struct Overlay Overlay;
+
+Overlay* createOverlay(const char*, const char*, int, int);
+const char* overlayName(Overlay*);
+const char* overlayOwnerEmail(Overlay*);
+int overlayPriority(Overlay*);
+const char* overlayDescription(Overlay*);
+int overlayIsOfficial(Overlay*);
+void overlayFree(Overlay*);
+
+#endif