求高手:VC中win 32 Application 下如何得到网页中用JAVA平台显示的一串数字啊 我用VC的win 32 Application 创建了个工程,把鼠标移动到一个固定的位置,想得到屏幕上网页中用JAVA平台显示的一串数字,如1.2345,那位高手请进,指点一下,先谢谢了!!!!!!!!

解决方案 »

  1.   

    自己先查到了要用钩子函数,HHOOK SetWindowsHookEx(
      int idHook,        // type of hook to install
      HOOKPROC lpfn,     // address of hook procedure
      HINSTANCE hMod,    // handle to application instance
      DWORD dwThreadId   // identity of thread to install hook for
    );
     
    建立一个鼠标钩子函数,可是这东西解释参数时,
    hMod 
    Handle to the DLL containing the hook procedure pointed to by the lpfn parameter. The hMod parameter must be set to NULL if the dwThreadId parameter specifies a thread created by the current process and if the hook procedure is within the code associated with the current process。
    请问动态链接库如何使用啊 ?
    谁能给个例子啊?