home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Utilities
/
UnLZX2
/
src
/
unlzx.h
< prev
Wrap
C/C++ Source or Header
|
2000-08-02
|
592b
|
36 lines
/*
** LZX Extract in (supposedly) portable C.
**
** Based on unlzx 1.0 by David Tritscher.
** Rewritten by Oliver Gantert <lucyg@t-online.de>
**
** Compiled with vbcc/Amiga and lcc/Win32
*/
#ifndef unlzx_unlzx_h
#define UNLZX_VERSION "2.12"
#define UNLZX_VERDATE "27.07.2000"
/*
#define UNLZX_DEBUG
*/
#ifndef AMIGA
#include <windows.h>
#endif
#include <ctype.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
struct filename_node
{
struct filename_node * next;
unsigned long length;
unsigned long crc;
unsigned char filename[256];
};
#endif /* unlzx_unlzx_h */