diff options
author | George Hazan <george.hazan@gmail.com> | 2012-07-26 18:55:37 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-07-26 18:55:37 +0000 |
commit | ffcd96c8ebd7365d1a92486b5b6efaf30e61d72c (patch) | |
tree | 257d9845548db135ea5b74547344ceeec415ce55 /src/modules/plugins/plugins.h | |
parent | c8deb2a34dd157921bd87d175b39cba6964bc20e (diff) |
- local core command-line parser banished with shame;
- plugins' linked lists replaced with the usual lists;
- numerous perversions in the core eliminated;
- missing file added
git-svn-id: http://svn.miranda-ng.org/main/trunk@1200 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/plugins/plugins.h')
-rw-r--r-- | src/modules/plugins/plugins.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/plugins/plugins.h b/src/modules/plugins/plugins.h index e0466ccc35..d7b4d9adce 100644 --- a/src/modules/plugins/plugins.h +++ b/src/modules/plugins/plugins.h @@ -44,10 +44,9 @@ struct pluginEntry unsigned int pclass; // PCLASS_*
int hLangpack;
BASIC_PLUGIN_INFO bpi;
- pluginEntry* nextclass;
};
-extern LIST<pluginEntry> pluginList;
+extern LIST<pluginEntry> pluginList, servicePlugins, clistPlugins;
extern MUUID miid_last;
int PluginOptionsInit(WPARAM, LPARAM);
|