// test_dll.h : test_dll Ӧ�ó������ͷ�ļ�
//
#pragma once

#ifndef __AFXWIN_H__
	#error "�ڰ������ļ�֮ǰ������stdafx.h�������� PCH �ļ�"
#endif

#include "resource.h"       // ������


// Ctest_dllApp:
// �йش����ʵ�֣������ test_dll.cpp
//

class Ctest_dllApp : public CWinAppEx
{
public:
	Ctest_dllApp();


// ��д
public:
	virtual BOOL InitInstance();
	virtual int ExitInstance();

// ʵ��
	afx_msg void OnAppAbout();
	DECLARE_MESSAGE_MAP()
};

extern Ctest_dllApp theApp;