home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Secrets (4th Edition) / Windows95Secrets4thEdition.iso / tools / installr / freeman / zipldr.h_ / zipldr
Encoding:
Text File  |  1995-07-13  |  399 b   |  26 lines

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