home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 13 / AACD13.ISO / AACD / Utilities / UnLZX2 / src / unlzx.h < prev   
C/C++ Source or Header  |  2000-08-02  |  592b  |  36 lines

  1. /*
  2. **  LZX Extract in (supposedly) portable C.
  3. **
  4. **  Based on unlzx 1.0 by David Tritscher.
  5. **  Rewritten by Oliver Gantert <lucyg@t-online.de>
  6. **
  7. **  Compiled with vbcc/Amiga and lcc/Win32
  8. */
  9.  
  10. #ifndef unlzx_unlzx_h
  11.  
  12. #define UNLZX_VERSION "2.12"
  13. #define UNLZX_VERDATE "27.07.2000"
  14. /*
  15. #define UNLZX_DEBUG
  16. */
  17.  
  18. #ifndef AMIGA
  19. #include <windows.h>
  20. #endif
  21. #include <ctype.h>
  22. #include <stdlib.h>
  23. #include <stdio.h>
  24. #include <string.h>
  25.  
  26. struct filename_node
  27. {
  28.   struct filename_node * next;
  29.   unsigned long length;
  30.   unsigned long crc;
  31.   unsigned char filename[256];
  32. };
  33.  
  34. #endif /* unlzx_unlzx_h */
  35.  
  36.