如何使用 Java 本机访问 (JNA) 映射回调函数

发布于 2024-11-28 04:54:12 字数 324 浏览 2 评论 0原文

我如何使用 WH_FOREGROUNDIDLE 设置 Windows 挂钩以及

DWORD CALLBACK ForegroundIdleProc( __in int code, DWORD wParam, LONG lParam );

我试图检测线程/进程何时空闲的以下回调函数。

我通过使用以下函数获取了threadProccessId

GetForegroundWindow -> GetWindowThreadProcessId.

How can i set up windows hook with WH_FOREGROUNDIDLE and the following call back Functions

DWORD CALLBACK ForegroundIdleProc( __in int code, DWORD wParam, LONG lParam );

I am trying to detect when a thread/process goes idle.

I have obtained the threadProccessId by using the following functions:

GetForegroundWindow -> GetWindowThreadProcessId.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沫雨熙 2024-12-05 04:54:12
 public static interface ForegroundIdleProc extends Callback(){
   int invoke(int code, int wParam , NativeLong lParam);
 }

 /*....Usage....*/
 ForegroundIdleProc proc = new ForegroundIdleProc(){
   int invoke(int code, int wParam , NativeLong lParam){
      /* Handle callback */
       /*Make sure you define this function first.*/
       return NativeLibrary.Instance.CallNextHookEx(NULL , code , wParam , lParam);
   } 
 }

 NativeLibrary.Instance.SetWindowsHookEx(WH_FOREGROUNDIDLE , proc , etc etc);

编辑:添加了退货声明。

 public static interface ForegroundIdleProc extends Callback(){
   int invoke(int code, int wParam , NativeLong lParam);
 }

 /*....Usage....*/
 ForegroundIdleProc proc = new ForegroundIdleProc(){
   int invoke(int code, int wParam , NativeLong lParam){
      /* Handle callback */
       /*Make sure you define this function first.*/
       return NativeLibrary.Instance.CallNextHookEx(NULL , code , wParam , lParam);
   } 
 }

 NativeLibrary.Instance.SetWindowsHookEx(WH_FOREGROUNDIDLE , proc , etc etc);

EDIT: Added a return statement.

在你怀里撒娇 2024-12-05 04:54:12

扩展 StdCallCallback 而不是 Callback,以便使用正确的调用约定调用回调。在 win32 下,宏“CALLBACK”通常解析为 _stdcall。

Extend StdCallCallback instead of Callback in order to get the callback called with the correct calling convention. Under win32 the macro "CALLBACK" usually resolves to _stdcall.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文