1

我在 Visual Studio 中有一个解决方案文件,其中有两个项目,一个用于 .dll 文件,另一个项目用于 .c 文件:

这是 .h 文件:

#include <windows.h>

#ifndef BHANNAN_TEST_CLASS_H_
#define BHANNAN_TEST_CLASS_H_

extern int __declspec (dllexport) Factorial(int n);

#endif 

和 .c 文件(的 dll ):

#include "hanan.h"
#include <stdio.h>

int Factorial(int n) {
  printf("in DLL %d \n" ,n);

  return 0;
}

现在我有一个加载器/测试器,我尝试从中加载 dll 以挂钩记事本中的击键,只是为了了解挂钩的机制。

这是加载器的代码:

#include <windows.h>
#include <stdio.h>

typedef int (*functor) (int);
functor funcptr =NULL;

int main () {

    HWND windowHandle;
    HINSTANCE hMod;
    HOOKPROC lpfn; 
    DWORD threadId;
    HHOOK hook;
    HMODULE myDLL = LoadLibraryW(L"dll123.dll");
    funcptr = (functor) GetProcAddress(myDLL,"Factorial");

    /// printing issues:////////////////
    printf("%d \n\r" , myDLL);
    printf("%d" , funcptr(33));
    //////////////////////////////////////

    lpfn = (HOOKPROC) funcptr;
    hMod = myDLL;
    windowHandle = FindWindow(L"Notepad",NULL);
    threadId = GetWindowThreadProcessId(windowHandle, NULL);

    hook = SetWindowsHookEx(WH_KEYBOARD,lpfn,hMod,threadId);//(WH_CBT, HookCBTProc, hInst, threadId);

    /// printing issues:
    printf("%d %d %d %d\n" , hook, WH_KEYBOARD , lpfn , hMod);
    printf("%d %d \n",threadId , windowHandle );
    getchar();
    return 0;
}

我得到所有打印没有零,这意味着没有空值(假设记事本正在运行),但是当我在记事本中进行任何击键时,我立即得到一个异常,

使用 Visual Studio 2010 和 Windows 7

添加了异常属性:

 Exception Offset:  0006632c
  Exception Code:   c0000409
  Exception Data:   00000000
4

1 回答 1

4

只是在黑暗中拍摄,但传递给 set 钩子调用的函数应该如下所示:

LRESULT CALLBACK KeyboardProc(
  __in  int code,
  __in  WPARAM wParam,
  __in  LPARAM lParam
);

不是:( int Factorial(int n)另外两个参数在哪里??)

于 2011-12-21T15:21:26.227 回答