summaryrefslogtreecommitdiff
path: root/riscos/plugin.h
diff options
context:
space:
mode:
Diffstat (limited to 'riscos/plugin.h')
-rw-r--r--riscos/plugin.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/riscos/plugin.h b/riscos/plugin.h
new file mode 100644
index 000000000..98b94c4da
--- /dev/null
+++ b/riscos/plugin.h
@@ -0,0 +1,26 @@
+/**
+ * $Id: plugin.h,v 1.1 2003/05/31 18:47:00 jmb Exp $
+ */
+
+#ifndef _NETSURF_RISCOS_PLUGIN_H_
+#define _NETSURF_RISCOS_PLUGIN_H_
+
+struct plugin_object {
+
+ char* data;
+ char* src;
+ char* type;
+ char* codetype;
+ char* codebase;
+ char* classid;
+ char* paramds; /* very likely to change */
+ unsigned int* width;
+ unsigned int* height;
+
+};
+
+
+void plugin_fetch(struct content* content, char* url, struct box* box,
+ struct plugin_object* po);
+
+#endif