The unified diff between revisions [84a0b39f..] and [58a3ccba..] 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 [58a3ccba47e51398ea76582c5b4a94bf8af04187] # # 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? */ +}; +