我需要在WinForm应用程序中导入dll。
[DllImport("ole32.dll")]
static extern int GetRunningObjectTable(uint reserved,out IRunningObjectTable pprot);
[DllImport("ole32.dll")]
static extern int CreateBindCtx(uint reserved,out IBindCtx pctx);
这适用于32位操作系统。
我有64位操作系统,但我安装了32位.dll。
我没有64位.dll。没有ole64.dll
。
如果有办法在64位操作系统中加载32位dll?