home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / PROGRAM / DIVERSEN / FI21 / ZIPLDR.H_ / ZIPLDR
Text File  |  1995-02-01  |  446b  |  29 lines

  1. #define __ZIPLDR_H
  2.  
  3.  
  4. #ifndef __STDIO_H
  5. #include "stdio.h"
  6. #endif
  7. #ifndef __DLLLDR_H
  8. #include "dllldr.h"
  9. #endif
  10.  
  11.  
  12. class lzpzipldr:public dllldr
  13. {
  14.    public:
  15.  
  16.    enum
  17.    {
  18.       ZIP_ANY = 0, ZIP_PKW = 1, ZIP_GNU = 2
  19.    };
  20.  
  21.    int init()
  22.    {
  23.       return dllldr::init("lzpzip.dll");
  24.    }
  25.    int  LzpZipCreate(char path[], int ziptype, int level);
  26.    int  LzpZipWrite(char buf[], unsigned len);
  27.    long LzpZipClose();
  28. };
  29.