我被要求为旧的 delphi 程序创建一个 .Net dll。我正在尝试使用 COM 可调用包装器来执行此操作,但是当它尝试加载 dll 时我不断收到错误消息(很笼统,例如“我无法加载 dll”)。以下是技术文档的内容:
The DLL only needs to export one function under the name 'AUTHORIZE'.
function Authorize(InXml: PChar): PChar; stdcall;
(Delphi syntax. May be different in other languages.)
这是我的 CCW 代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace ComCallableWrapper
{
[Guid("C3FD922A-FB44-47B1-9C0C-8F7FAF57098B")]
[InterfaceType(ComInterfaceType.InterfaceIsIDispatch)]
public interface IAuthorizer
{
[DispId(1)]
string Authorize(string lnpInXml);
}
[ProgId("ComCallableWrapper.Authorizer")]
[ClassInterface(ClassInterfaceType.None)]
public class Authorizer : IAuthorizer
{
public Authorizer()
{
}
public string Authorize(string lnpInXml)
{
return "Approved!";
}
}
}
我还在运行 delphi 程序的计算机上运行此命令“regasm /tlb:ComCallableWrapper.tlb ComCallableWrapper.dll /codebase”。
我一直在谷歌上做一些关于 delphi 如何调用 dll 上的函数的研究,我发现至少有两种方法:
function Authorize(lnpInXml: pchar): pchar; stdcall; external 'DLLName.dll';
和
oleObject := CreateOleObject('ComCallableWrapper.Authorizer');
ShowMessage(oleObject.Authorize('Approved?'));
看起来 COM 的工作方式有点不同。有没有办法让我的 CCW 像第一种方式一样工作?
问候。