home *** CD-ROM | disk | FTP | other *** search
- #ifndef _PINFO_H
- #define _PINFO_H
-
- #include "verinfo.h"
-
-
- enum EPFLAGS {
- ABOUT=2,
- EXECWITHVARIABLES=3,
- LANGUAGEPACKSUPPORT=6,
- CONFIGURE=12,
- UTILITY=24
- };
-
- struct SPLUGINTYPE
- { char *fname; //the plugin's DLL name
- char *pname; //the plugin's name
- SVERSIONS verHackman; /*the highest and lowest version of Hackman that this
- plugin can work with*/
-
- SVERSIONS verDLLdeity; /*the highest and lowest version of DLLdeity that this
- plugin can work with*/
-
- double pVersion; //the plugin's version
- char *pType; //the plugin's type
- long lExtra; //extra info that may need to be passed
- };
-
- #endif
-