本文介绍了如何找到COM DLL的入口点的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好

您对找到COM API的入口点有什么想法,以访问其功能.
我在C#项目中使用以下代码


[DllImport("C:\\ Program Files \\ Readsoft \\ FORMS \\ Bin \\ Interop.VWRUNTIMELib.dll")]
公共静态外部字符串OnAppStart();

当我使用此功能时,会给我错误
找不到DLL"C:\\ Program Files \\ Readsoft \\ FORMS \\ Bin \\ Interop.VWRUNTIMELib.dll"的入口点OnAppStart()

请指导我,我该如何为该功能设置入口点,或者如果您有任何其他建议....

谢谢与问候
Suresh KHarod

Hello All

do you have any Idea regarding finding of the entry point for a COM API to access its functions.
i am using the following code in a C# project


[DllImport("C:\\Program Files\\Readsoft\\FORMS\\Bin\\Interop.VWRUNTIMELib.dll")]
public static extern string OnAppStart();

when i use this function it Gives me Error that
unable to find Entry point OnAppStart() for DLL "C:\\Program Files\\Readsoft\\FORMS\\Bin\\Interop.VWRUNTIMELib.dll"

please guide me that how i can funcd the entry point for this or if you have any other suggestion....

thanks & Regards
Suresh KHarod

推荐答案



这篇关于如何找到COM DLL的入口点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 06:28
查看更多