bug # 163739 - XPI Packager adding the xpi packager to the mozilla tree. this is a windows only app used to build the xpi packager for building self installing xpi files. git-svn-id: svn://10.0.0.236/trunk@134725 18797224-902f-48f8-a5cc-f745e15eee43
23 lines
590 B
C++
23 lines
590 B
C++
// ZipBigFile.h: interface for the CZipBigFile class.
|
|
//
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#if !defined(AFX_ZipBigFile_H__79E0E6BD_25D6_4B82_85C5_AB397D9EC368__INCLUDED_)
|
|
#define AFX_ZipBigFile_H__79E0E6BD_25D6_4B82_85C5_AB397D9EC368__INCLUDED_
|
|
|
|
#if _MSC_VER > 1000
|
|
#pragma once
|
|
#endif // _MSC_VER > 1000
|
|
|
|
class CZipBigFile : public CFile
|
|
{
|
|
DECLARE_DYNAMIC(CZipBigFile)
|
|
public:
|
|
_int64 Seek(_int64 dOff, UINT nFrom);
|
|
CZipBigFile();
|
|
virtual ~CZipBigFile();
|
|
|
|
};
|
|
|
|
#endif // !defined(AFX_ZipBigFile_H__79E0E6BD_25D6_4B82_85C5_AB397D9EC368__INCLUDED_)
|