DLL导出类

 DLL导出类

  DLL中定义的类可以在应用工程中使用。

#ifdef MYDLL_EXPORTS
#define MYDLL_API __declspec(dllexport)
#else
#pragma message("auto to link the Test2.lib")
#define MYDLL_API __declspec(dllimport)
#endif



class MYDLL_API CMyClass  
{
public:
	 CString SayHello(CString strName);
	 CMyClass();
	 virtual ~CMyClass();

};


 

// MyClass.cpp: implementation of the CMyClass class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#define  MYDLL_EXPORTS
#include "Test2.h"
#include "MyClass.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CMyClass::CMyClass()
{

}

CMyClass::~CMyClass()
{

}

CString CMyClass::SayHello(CString strName)
{
     return "Hello " + strName; 
}

 

由于在应用程序中没有定义MYDLL_EXPORTS, 故MyClass.h 被引入的类声明

而在应用工程中没有定义DLL_FILE,故其包含point.h和circle.h后引入的类声明为:

class _declspec(dllimport) CMyClass/ /导入类CMyClass

{



}

你可能感兴趣的:(api,File,Class,dll)