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 >
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