home *** CD-ROM | disk | FTP | other *** search
- #define __ZIPLDR_H
-
-
- #ifndef __DLLLDR_H
- #include "dllldr.h"
- #endif
-
-
- class lzpzipldr:public dllldr
- {
- public:
-
- enum
- {
- ZIP_ANY = 0, ZIP_PKW = 1, ZIP_GNU = 2
- };
-
- int init()
- {
- return dllldr::init("lzpzip.dll");
- }
- int LzpZipCreate(char path[], int ziptype, int level);
- int LzpZipWrite(char buf[], unsigned len);
- long LzpZipClose();
- };
-