home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 December / PCWorld_2000-12_cd.bin / Software / Vyzkuste / Hackman / _SETUP.1 / varreg.h < prev    next >
C/C++ Source or Header  |  2000-05-31  |  505b  |  18 lines

  1. #ifndef _VARREG_H
  2. #define _VARREG_H
  3.  
  4. struct CSELECTION
  5. {
  6.     long startposition;        //starting position for the selection
  7.     long selsize;            //the lenght of the selecton
  8.     char *lpBuffer;            //the data stored in the selection
  9. };
  10.  
  11. struct SREGVARIABLES
  12. {    bool registered;        //have the variables already been registerd?
  13.     CSELECTION mySelection;    //the current selection
  14.     LPSTR currentfile;        //the file that is currently being worked on.
  15.     LPSTR loadedfiles[10];    //other files which are loaded
  16. };
  17.  
  18. #endif