The unified diff between revisions [84a0b39f..] and [8482057d..] is displayed below. It can also be downloaded as a raw diff.

This diff has been restricted to the following files: 'src/lsi/plugin.h'

#
# old_revision [84a0b39f678926ca2848e2a0da300842a9cf5809]
# new_revision [8482057dd1a991674bb30b63b9397a3c5d069df9]
#
# add_file "src/lsi/plugin.h"
#  content [2405fd3aa66be3d2a1ca3a1ca93bfcf258d4c8e9]
#
============================================================
--- /dev/null	
+++ src/lsi/plugin.h	2405fd3aa66be3d2a1ca3a1ca93bfcf258d4c8e9
@@ -0,0 +1,10 @@
+/* plugin.h */
+
+struct plugin {
+	char *pl_name;
+	int (*pl_init)(void);
+	void (*pl_shutdown)(void);
+	int pl_active;
+	/* function table? */
+};
+