summaryrefslogtreecommitdiff
path: root/navit/osd.h
diff options
context:
space:
mode:
Diffstat (limited to 'navit/osd.h')
-rw-r--r--navit/osd.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/navit/osd.h b/navit/osd.h
new file mode 100644
index 00000000..9a50e99b
--- /dev/null
+++ b/navit/osd.h
@@ -0,0 +1,16 @@
+#ifndef NAVIT_OSD_H
+#define NAVIT_OSD_H
+
+struct osd_methods {
+ void (*osd_destroy)(struct osd_priv *osd);
+};
+
+/* prototypes */
+struct attr;
+struct navit;
+struct osd;
+struct osd *osd_new(struct navit *nav, const char *type, struct attr **attrs);
+/* end of prototypes */
+
+#endif
+