00001 00002 00007 /******************************************************************** 00008 Description: Plugin-handling library 00009 part of the 3Dsia project 00010 created: xandi, 270200 00011 00012 History: 00013 date, name, changes, in funtion 00014 DDMMYY develo did this and this and that there 00015 00016 ********************************************************************/ 00017 00018 #ifndef PLUGINHANDLING_H 00019 #define PLUGINHANDLING_H 00020 00021 #include "plugin.h" 00022 00024 struct FEPList 00025 { 00026 FrontEndPlugin* plug; 00027 int id; 00028 bool active; 00029 FEPList* next; 00030 }; 00031 00033 struct APList 00034 { 00035 AuthenticationPlugin* plug; 00036 int id; 00037 int active; 00038 APList* next; 00039 }; 00040 00042 void LoadAllPlugins ( void ); 00043 00044 #endif