diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2009-09-03 19:38:20 -0400 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2015-06-26 00:30:14 -0600 |
commit | 67d3b5846d84d4a2e5a31d4e268bc9d51495d7e0 (patch) | |
tree | 92db2e7852b7ee09e55a68276101566c562a4283 /c/plugin.h | |
parent | 1eacc442394d1f70bbe05dea699c80ca41f26d4c (diff) |
the C implementation properly loads the plugins, then creates a dependancy tree
Diffstat (limited to 'c/plugin.h')
-rw-r--r-- | c/plugin.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -31,12 +31,12 @@ struct plugin_command char *name; /*plugin ID*/ - struct plugin *plugin; /* which plugin does it belong to? */ + struct plugin *plugin; /* which plugin does it belong to? */ struct plugin_command *p_next; /* next command in this plugin (linked list)*/ /*dependancy tree*/ struct plugin_command *depend; /* what does this depend on? */ - char *depends; /* what does this depend on? */ + char *depends;/* what does this depend on? */ struct plugin_command *child; /* what depends on this? (linked list) */ struct plugin_command *d_next; /* next command w/ same dependancy (linked list) */ }; @@ -44,6 +44,6 @@ struct plugin_command struct plugin_tree { struct plugin *plugins; - struct plugin_command *depend; + struct plugin_command *depends; }; |