Click here to Skip to main content
15,892,072 members
Articles / Desktop Programming / ATL

Zipper Component

Rate me:
Please Sign up or sign in to vote.
4.76/5 (19 votes)
27 Feb 2006CPOL7 min read 95.3K   1.7K   42  
A COM / ATL component for zipping and unzipping files.
#ifndef __ZIPFILEINFO_H__
#define __ZIPFILEINFO_H__

struct ZipFileInfo
{
	_bstr_t bstrFileName;
	_bstr_t bstrNewName;
	_bstr_t bstrPath;
	long lCompSize;
};

typedef std::vector<ZipFileInfo> ZipFileInfoVtr;

#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Chief Technology Officer Blendwerk TI & Media
Mexico Mexico
42

Comments and Discussions