JNA 3.2.7 - CallWindowProc - 它在哪里?
我在使用最新版本的 JNA 库时遇到问题。我曾经通过User32.INSTANCE.CallWindowProc
调用CallWindowProc
。该过程与此处描述的过程相同:在 JNA 中创建一个本机 Windows 窗口和一些带有 GWL_WNDPROC 的 GetWindowLong
在最新版本 3.2.7 中我找不到不再是CallWindowProc
。
有人能解释一下吗?
非常感谢!
I'm having troubles with the latest version of the JNA library. I used to call CallWindowProc
by User32.INSTANCE.CallWindowProc
. The process is the same as the one described here: Create a native Windows window in JNA and some GetWindowLong with GWL_WNDPROC
In the latest version 3.2.7 I can't find anymore CallWindowProc
.
Can anyone shed some light on this?
Thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看起来这个方法已经从3.2.7中删除了,虽然我不知道为什么。如果你想使用它,请使用SVN客户端查看JNA的最新源代码并将该函数添加到User32类中并重新编译平台。罐。
Looks like this method has been removed from 3.2.7 ,though i don't know why.If you want to use it , use an SVN client to checkout the latest source for JNA and add the function to the User32 class and recompile platform.jar.