我在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;
}

现在我有了一个loader/tester,我试着从它加载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

最佳答案

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

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

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

关于c - 为什么在记事本中进行按键操作时出现异常?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8592060/

10-13 05:55