我有几个关于 DLL 的问题。我尝试了很多,但我无法获得完整的图片。大多数示例都在 C# 等中。
使用 VS2005 中的向导,我创建了一个非托管 MFC 常规 DLL(由于剩余代码,必须是 MFC)。然后我尝试将它导入到 VS2005 托管的 .NET C++ 应用程序中。请参阅下面的代码。
mfc_main.h:
//---------------------------------------------------------
// mfc_main.h : main header file for the mfc_main DLL
//---------------------------------------------------------
#pragma once
#ifndef __AFXWIN_H__
#error "include 'stdafx.h' before including this file for PCH"
#endif
#include "resource.h" // main symbols
class __declspec(dllexport) Cmfc_mainApp : public CWinApp
{
public:
Cmfc_mainApp();
// Overrides
public:
virtual BOOL InitInstance();
int SayHello(int j);
int init;
DECLARE_MESSAGE_MAP()
};
mfc_main.cpp:
//----------------------------------------------------------------
// mfc_main.cpp : Defines the initialization routines for the DLL.
//----------------------------------------------------------------
#include "stdafx.h"
#include "mfc_main.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
BEGIN_MESSAGE_MAP(Cmfc_mainApp, CWinApp)
END_MESSAGE_MAP()
Cmfc_mainApp::Cmfc_mainApp()
{
}
Cmfc_mainApp theApp;
BOOL Cmfc_mainApp::InitInstance()
{
CWinApp::InitInstance();
return TRUE;
}
int Cmfc_mainApp::SayHello(int j)
{
init = 12; // Comment this out the application works !!!!
return j * 6;
};
在应用中
[DllImport("mfc_main.dll",
EntryPoint = "?SayHello@Cmfc_mainApp@@QAEHH@Z",
ExactSpelling = true)]
static int SayHello(int a);
......
private: System::Void button_Click(System::Object^ sender, System::EventArgs^ e)
{
int retval = SayHello(2);
}
我的问题是:
1 - 为什么在函数 SayHello 中没有 init = 12 并且应用程序崩溃时它可以工作(错误:尝试读取或写入受保护的内存)?
2 - 在这种情况下,尽管我没有调用它,但 InitInstance() 是否已执行(为什么没有 ExitInstance)?
3 - 为什么我在使用 DLLImport 时看到一些给出入口点的示例而有些没有?
4 - 我可以将委托作为参数提供给 MFC C++ DLL 中的函数而不是普通函数指针,以创建回调吗?