www.pudn.com > win32.rar > DllN.h


// DllN.h : DllN DLL 的主头文件 
// 
 
#pragma once 
 
#ifndef __AFXWIN_H__ 
	#error include 'stdafx.h' before including this file for PCH 
#endif 
 
#include "resource.h"		// 主符号 
#define  DllExport  _declspec(dllexport) 
extern "C" DllExport float FindSum(float f1,float f2); 
 
 
// CDllNApp 
// 有关此类实现的信息,请参阅 DllN.cpp 
// 
 
class CDllNApp : public CWinApp 
{ 
public: 
	CDllNApp(); 
 
// 重写 
public: 
	virtual BOOL InitInstance(); 
 
	DECLARE_MESSAGE_MAP() 
};