You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
652 B
34 lines
652 B
|
7 months ago
|
|
||
|
|
// IncSourceTestDlg.h: PROJECT_NAME 애플리케이션에 대한 주 헤더 파일입니다.
|
||
|
|
//
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#ifndef __AFXWIN_H__
|
||
|
|
#error "PCH에 대해 이 파일을 포함하기 전에 'pch.h'를 포함합니다."
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#include "resource.h" // 주 기호입니다.
|
||
|
|
|
||
|
|
|
||
|
|
// CIncSourceTestDlgApp:
|
||
|
|
// 이 클래스의 구현에 대해서는 IncSourceTestDlg.cpp을(를) 참조하세요.
|
||
|
|
//
|
||
|
|
|
||
|
|
class CIncSourceTestDlgApp : public CWinApp
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
CIncSourceTestDlgApp();
|
||
|
|
|
||
|
|
// 재정의입니다.
|
||
|
|
public:
|
||
|
|
virtual BOOL InitInstance();
|
||
|
|
virtual int ExitInstance();
|
||
|
|
|
||
|
|
// 구현입니다.
|
||
|
|
|
||
|
|
DECLARE_MESSAGE_MAP()
|
||
|
|
};
|
||
|
|
|
||
|
|
extern CIncSourceTestDlgApp theApp;
|