|
|
Microsoft Windows NT Build 297 06-28-1992
/* ** lzexpand.h - Public interface to LZEXP?.LIB. */ #ifndef _LZEXPAND_INCLUDED_ #define _LZEXPAND_INCLUDED_ /* ** Error Return Codes */ #define LZERROR_BADINHANDLE (-1) /* invalid input handle */ #define LZERROR_BADOUTHANDLE (-2) /* invalid output handle */ #define LZERROR_READ (-3) /* corrupt compressed file format */ #define LZERROR_WRITE (-4) /* out of space for output file */ #define LZERROR_GLOBALLOC (-5) /* insufficient memory for LZFile struct */ #define LZERROR_GLOBLOCK (-6) /* bad global handle */ #define LZERROR_BADVALUE (-7) /* input parameter out of acceptable range*/ #define LZERROR_UNKNOWNALG (-8) /* compression algorithm not recognized */ /* ** Prototypes */ INT APIENTRY LZStart( VOID ); VOID APIENTRY LZDone( VOID ); LONG APIENTRY CopyLZFile( INT, INT ); LONG APIENTRY LZCopy( INT, INT ); INT APIENTRY LZInit( INT ); INT APIENTRY GetExpandedName( LPSTR, LPSTR ); INT APIENTRY LZOpenFile( LPSTR, LPOFSTRUCT, WORD ); LONG APIENTRY LZSeek( INT, LONG, INT ); INT APIENTRY LZRead( INT, LPSTR, INT ); VOID APIENTRY LZClose( INT ); #endif // _LZEXPAND_INCLUDED_
This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.