+ -
当前位置:首页 → 问答吧 → 动态链接库的问题

动态链接库的问题

时间:2011-09-05

来源:互联网

请大家指点一下吧
Public Declare Function GetKeyWord Lib "RepReader.dll" Alias "GetKeyword" (nKeyword As Integer, nOffset As Integer, row As Integer, col As Integer, lpUserKeywordName As String) As Boolean

上面是我定义了,但是在用“GetKeyWord”这个方法时出错,提示:
Can't find DLL entry point GetKeyword in RepReader.dll

RepReader.dll里有一个Reader类,Reader类中有GetKeyword方法,是不是我定义的方法有误啊?
先谢谢各位了

作者: YUYAO2   发布时间: 2011-09-05

看看MSDN上面有详细说明

作者: wanenlai   发布时间: 2011-09-05

这个函数看起来好像是应该定声明为:

Public Declare Function GetKeyWord Lib "RepReader.dll" Alias "GetKeyword" (nKeyword As Integer, nOffset As Integer, row As Integer, col As Integer, lpUserKeywordName As String) As Boolean

==>
Public Declare Function GetKeyWord Lib "RepReader.dll" Alias "GetKeyword" (byval nKeyword As long, byval nOffset As long, byval row As long, byval col As long, byval lpUserKeywordName As String) As long

作者: worldy   发布时间: 2011-09-05

热门下载

更多