home *** CD-ROM | disk | FTP | other *** search
- #ifndef _VARREG_H
- #define _VARREG_H
-
- struct CSELECTION
- {
- long startposition; //starting position for the selection
- long selsize; //the lenght of the selecton
- char *lpBuffer; //the data stored in the selection
- };
-
- struct SREGVARIABLES
- { bool registered; //have the variables already been registerd?
- CSELECTION mySelection; //the current selection
- LPSTR currentfile; //the file that is currently being worked on.
- LPSTR loadedfiles[10]; //other files which are loaded
- };
-
- #endif