home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 December / PCWorld_2000-12_cd.bin / Software / Vyzkuste / Hackman / _SETUP.1 / pinfo.h < prev    next >
C/C++ Source or Header  |  2000-07-09  |  697b  |  30 lines

  1. #ifndef _PINFO_H
  2. #define _PINFO_H
  3.  
  4. #include "verinfo.h"
  5.  
  6.  
  7. enum EPFLAGS    {
  8.                     ABOUT=2,
  9.                     EXECWITHVARIABLES=3,
  10.                     LANGUAGEPACKSUPPORT=6,
  11.                     CONFIGURE=12,
  12.                     UTILITY=24
  13.                 };
  14.  
  15. struct SPLUGINTYPE
  16. {            char *fname;            //the plugin's DLL name
  17.             char *pname;            //the plugin's name
  18.             SVERSIONS verHackman;    /*the highest and lowest version of Hackman that this
  19.                                       plugin can work with*/
  20.             
  21.             SVERSIONS verDLLdeity;    /*the highest and lowest version of DLLdeity that this
  22.                                       plugin can work with*/
  23.  
  24.             double pVersion;        //the plugin's version
  25.             char *pType;            //the plugin's type
  26.             long lExtra;            //extra info that may need to be passed
  27. };
  28.  
  29. #endif
  30.