home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Groovy Bytes: Behind the Moon
/
groovybytes.iso
/
GROOVY
/
DEMOS
/
MISC_DEM
/
SUNKNOWN.ZIP
/
SEG.H
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1994-03-26
|
194 b
|
20 lines
// SEG.H
#ifndef _SEG_H
#define _SEG_H
#include "global.h"
class seg_C
{
byte far *ptr2;
long seglen;
public:
byte *ptr;
seg_C(long len=65536l);
~seg_C();
};
#endif