-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEncode.h
45 lines (40 loc) · 1.32 KB
/
Encode.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Encode.h: CEncode クラスのインターフェイス
//
//////////////////////////////////////////////////////////////////////
#if !defined(AFX_ENCODE_H__32BF3EF2_DA08_4B9C_966A_C60000838662__INCLUDED_)
#define AFX_ENCODE_H__32BF3EF2_DA08_4B9C_966A_C60000838662__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "list"
using namespace std;
/*----------------------------------------------------------------------------*/
// 概要 : ファイルを暗号化・復号化を行う
// 関連フォーム: void
// 備考 : 名前が不適切がけど勘弁してください。 (^^ ;
/*----------------------------------------------------------------------------*/
class CEncode
{
public:
virtual int IsDecode(LPCTSTR lpPath);
virtual int Decode();
virtual void Load(void);
virtual int Encode(void);
virtual CString GetPath(void);
virtual int SetPath(LPCTSTR lpPath);
CEncode();
virtual ~CEncode();
private:
int m_inMax;
HINSTANCE m_hZipLib;
HINSTANCE m_hUnzipLib;
CString m_cPath;
list<CString> m_liFile;
list<CString>::iterator m_itFile;
protected:
virtual int Unzip(LPCTSTR lpCmdLine);
virtual int FileDelete();
virtual int WriteResponse(CString &r_cResponse);
virtual int Zip(LPCTSTR lpCmdLine);
};
#endif // !defined(AFX_ENCODE_H__32BF3EF2_DA08_4B9C_966A_C60000838662__INCLUDED_)