扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
作者:刘涛 来源:天极开发 2007年10月16日
关键字:
/////////////////////////////////////////////////////////////////////// // DLL.cpp : Defines the initialization routines for the DLL. #include "stdafx.h" #include "DLL.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif BEGIN_MESSAGE_MAP(CDLLApp, CWinApp) //{{AFX_MSG_MAP(CDLLApp) // NOTE - the ClassWizard will add and remove mapping macros here. // DO NOT EDIT what you see in these blocks of generated code! //}}AFX_MSG_MAP END_MESSAGE_MAP() /////////////////////////////////////////////////////////////////////////////// CDLLApp construction CDLLApp::CDLLApp() {} /////////////////////////////////////////////////////////////////////////////// The one and only CDLLApp object CDLLApp theApp; extern "C" _declspec(dllexport) int Test(int i) { AFX_MANAGE_STATE(AfxGetStaticModuleState()); return ++i; } /////////////////////////////////////////////////////////////////////////DLL.def文件 ; DLL.def : Declares the module parameters for the DLL. LIBRARY "DLL" DESCRIPTION 'DLL Windows Dynamic Link Library' EXPORTS //////////////////////////////////////////////////////////// void CTestDlg::OnBtest() { UpdateData(true); typedef int(_cdecl *Connect)(int i); HINSTANCE hinstDLL=NULL; hinstDLL=LoadLibrary("dll.dll"); if (hinstDLL) { Connect Proc; Proc = (Connect)GetProcAddress (hinstDLL,"Test"); int iValue = Proc(m_i); FreeLibrary(hinstDLL); char * p = new char[10]; sprintf(p,"%d",iValue); AfxMessageBox(p); } else { AfxMessageBox("没找到dll"); } } |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者