我CallWindowProc
在我的项目中使用了 JNative 的方法,并且参数出现了非常奇怪的错误。任何人都可以建议有什么问题吗?
我的代码:
User32.CallWindowProc(new LONG(hotkey.getPrevWndProc()),
new HWND((int)values[0]),
new UINT((int)values[1]),
new WPARAM((int)values[2]),
new LPARAM((int)values[3])).getValue();
和错误信息(CallWindowProc
下划线):
The method CallWindowProc(LONG, HWND, int, WPARAM, LPARAM) in the type User32 is not applicable for the arguments (LONG, HWND, UINT, WPARAM, LPARAM)
谢谢你的建议:)