如何使用序号调用导出函数
如果一个dll导出了一些函数,而这些函数只有序数,我该如何调用这些函数呢?
请给我一个简短的例子。
If a dll exports some functions and the functions have only ordinal numbers, how can I call the functions?
Give me a short example please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
GetProcAddress 的文档解释说,您通过
lpProcName
参数低位字中的整数序数。 MAKEINTRESOURCE 宏实际上可以用于制作这更容易一点:The documentation for GetProcAddress explains that you pass the integer ordinal in the low-order word of the
lpProcName
parameter. The MAKEINTRESOURCE macro can actually be used to make this a little easier: