gpt4 book ai didi

java - 使用 SetWindowLong 覆盖 WndProc

转载 作者:行者123 更新时间:2023-11-30 08:56:49 26 4
gpt4 key购买 nike

我需要设置一个 WindowLong 来覆盖 WndProc,我正在使用 coredll.dll 中的这个方法:

public interface CoreDll extends StdCallLibrary {
//loads the coredll with unicode options
CoreDll INSTANCE = (CoreDll)Native.loadLibrary("coredll", CoreDll.class,
W32APIOptions.UNICODE_OPTIONS);
//native calls
HMODULE GetModuleHandle(String lpModuleName);
long GetWindowLong(HWND hwnd, int gwlWndproc);
long SetWindowLong(HWND hWnd,int nIndex,Callback dwNewLong);
LRESULT DefWindowProc(HWND hWnd, int uMsg, WPARAM uParam,LPARAM lParam);
}

coredll中原来的方法签名是:

LONG SetWindowLong( 
HWND hWnd,
int nIndex,
LONG dwNewLong
);

但是当我使用它时,它总是返回 0,根据 Microsoft“指定的 32 位整数的先前值表示成功。零表示失败”。无论如何,我正在尝试以这种方式执行它:

public interface CallbackProc extends Callback, StdCall {
LRESULT callback(HWND hWnd, int uMsg, WPARAM uParam, LPARAM lParam);
}

//Get a handle to the current process
final HWND mainHwnd = CoreDll.INSTANCE.GetModuleHandle(null);

//Get a reference to the current process to send it in the new WndProc
long value=CoreDll.INSTANCE.GetWindowLong(new HWND(mainHwnd.getPointer()), -4);
final LONG_PTR prevWndProc = new LONG_PTR(value);

//Sets the new Method to override WndProc
final RfidCallbackProc ptr=new RfidCallbackProc() {
@Override
public LRESULT callback(HWND hWnd, int uMsg, WPARAM wParam,LPARAM lParam) {
//returns the call to the process
return CoreDll.INSTANCE.CallWindowProc(prevWndProc, hWnd, uMsg, wParam, lParam);
}
};

//Sets the new method to override Windows' WndProc
int num=(int)CoreDll.INSTANCE.SetWindowLong(new HWND(mainHwnd.getPointer()),-4 ,ptr);
//NUM IS ALWAYS 0

如果有人能给我提示,我将不胜感激,谢谢。

最佳答案

您正在检索模块句柄 (GetModuleHandle),此句柄引用加载到进程空间而非窗口中的可执行文件(exe 或 dll)。 SetWindowsLong 失败,因为您传递给它的对象不是窗口。IIRC 你在窗体/控件上有一个方法来获取 native HWND,这是你应该传递给 SetWindowLong 的正确对象类型。查看代码,我想你有一个 RFID 库,它通过 Windows 消息发送代码。您可能会考虑用一些 native 代码将其包装到一个对象中,然后生成“常规”.NET 事件。这会有点复杂,但避免了 SetWindowLong 可能产生的一些麻烦(例如:如果在窗口仍然有效时带有 wndproc 的对象被销毁)。

关于java - 使用 SetWindowLong 覆盖 WndProc,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28458297/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com