编写MFC拓展DLL

前端之家收集整理的这篇文章主要介绍了编写MFC拓展DLL前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
工程名为 mfcExDLL,创建MFC拓展DLL工程后,自动生成以下源文件
mfcExDLL.cpp,mfcExDLL.def,mfcExDLL.rc,StdAfx.cpp
以下头文件
Resource.h,StdAfx.h


添加 mfcExDLL.h 头文件用于自定义函数的声明

mfcExDLL.h

#ifndef mfcExDLL
#define mfcExDLL

#progma once

#ifdef DLL_API
#else
#define DLL_API extern "C" __declspec(dllimport)
#endif


DLL_API int __stdcall MyFunction();


#endif
mfcExDLL.cpp

//...
#define DLL_API extern "C" __declspec(dllexport)
#include"mfcExDLL.h"

int __stdcall MyFunction()
{
	//...
}

mfcExDLL.def

//...
MyFunction
若要在其他语言中使用这个DLL,在编写DLL是不要用MFC的数据类型如CString
原文链接:https://www.f2er.com/windows/372922.html

猜你在找的Windows相关文章