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