编写MFC拓展DLL

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


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

  1. mfcExDLL.h
  2.  
  3. #ifndef mfcExDLL
  4. #define mfcExDLL
  5.  
  6. #progma once
  7.  
  8. #ifdef DLL_API
  9. #else
  10. #define DLL_API extern "C" __declspec(dllimport)
  11. #endif
  12.  
  13.  
  14. DLL_API int __stdcall MyFunction();
  15.  
  16.  
  17. #endif
  1. mfcExDLL.cpp
  2.  
  3. //...
  4. #define DLL_API extern "C" __declspec(dllexport)
  5. #include"mfcExDLL.h"
  6.  
  7. int __stdcall MyFunction()
  8. {
  9. //...
  10. }

  1. mfcExDLL.def
  2.  
  3. //...
  4. MyFunction
若要在其他语言中使用这个DLL,在编写DLL是不要用MFC的数据类型如CString

猜你在找的Windows相关文章