Trisurf Monte Carlo simulator
Samo Penic
2019-02-28 ca9f26089df29fec5995ed4f19a06c29f7f4b12e
src/general.h
@@ -331,9 +331,23 @@
   void *libhandle;
} ts_plugin;
struct ts_plugin_chain {
   ts_plugin *plugin;
   struct ts_plugin_chain *next;
};
typedef struct ts_plugin_chain ts_plugin_chain;
typedef struct {
   ts_plugin_chain *at_start;
   ts_plugin_chain *after_vesicle_init;
   ts_plugin_chain *cleanup;
} ts_plugin_chains;
typedef struct {
   ts_uint n;
   ts_plugin **plugin;
   ts_plugin_chains *chain;
} ts_plugin_list;
/* end plugins */