summaryrefslogtreecommitdiff
path: root/navit/plugin_def.h
diff options
context:
space:
mode:
Diffstat (limited to 'navit/plugin_def.h')
-rw-r--r--navit/plugin_def.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/navit/plugin_def.h b/navit/plugin_def.h
new file mode 100644
index 000000000..3d82b5b25
--- /dev/null
+++ b/navit/plugin_def.h
@@ -0,0 +1,11 @@
+struct attr;
+struct navit;
+struct callback_list;
+PLUGIN_FUNC1(draw, struct container *, co)
+PLUGIN_FUNC3(popup, struct container *, map, struct popup *, p, struct popup_item **, list)
+PLUGIN_TYPE(graphics, (struct graphics_methods *meth, struct attr **attrs))
+PLUGIN_TYPE(gui, (struct navit *nav, struct gui_methods *meth, struct attr **attrs))
+PLUGIN_TYPE(map, (struct map_methods *meth, struct attr **attrs))
+PLUGIN_TYPE(osd, (struct navit *nav, struct osd_methods *meth, struct attr **attrs))
+PLUGIN_TYPE(speech, (char *data, struct speech_methods *meth))
+PLUGIN_TYPE(vehicle, (struct vehicle_methods *meth, struct callback_list *cbl, struct attr **attrs))