home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2002 July & August
/
PCWorld_2002-07-08_cd.bin
/
Software
/
Topware
/
hackman
/
_SETUP.1
/
Varreg.h
< prev
next >
Wrap
C/C++ Source or Header
|
2000-05-31
|
505b
|
18 lines
#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