39 lines
No EOL
655 B
C++
39 lines
No EOL
655 B
C++
// MakeTorrent.h : PROJECT_NAME 응용 프로그램에 대한 주 헤더 파일입니다.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#ifndef __AFXWIN_H__
|
|
#error "PCH에 대해 이 파일을 포함하기 전에 'stdafx.h'를 포함합니다."
|
|
#endif
|
|
|
|
#include "resource.h" // 주 기호입니다.
|
|
|
|
|
|
// CMakeTorrentApp:
|
|
// 이 클래스의 구현에 대해서는 MakeTorrent.cpp을 참조하십시오.
|
|
//
|
|
|
|
class CMakeTorrentApp : public CWinApp
|
|
{
|
|
public:
|
|
CMakeTorrentApp();
|
|
|
|
// 재정의입니다.
|
|
public:
|
|
virtual BOOL InitInstance();
|
|
|
|
// 구현입니다.
|
|
|
|
DECLARE_MESSAGE_MAP()
|
|
|
|
protected:
|
|
void LoadConfig();
|
|
|
|
protected:
|
|
std::wstring m_strMakeFileName;
|
|
std::wstring m_strWebSeeds;
|
|
std::wstring m_strTrackers;
|
|
};
|
|
|
|
extern CMakeTorrentApp theApp; |