首页上一页 1 下一页尾页 3 条记录 1/1页
求助
发表在C#图书答疑
2010-01-19
是否精华
是
否
版块置顶:
是
否
有个问题向老师求教,设置钩子时无法引用HookProc。代码如下:
using System;
using System.Cllections.Generic;
using System.Ling;
using System.Text;
using System.Runtime.InteropServices;
using System.Drawing;
//设置钩子
[DllImport("user32.dll")]
public static extern int SetWindowsHookEx(int idHook, HookProc lpfn,
IntPtr hInstance, int threadID);
为什么编译时报错:找不到类型或命间名称HookProc?
同时智能感知无法引用HookProc。
using System;
using System.Cllections.Generic;
using System.Ling;
using System.Text;
using System.Runtime.InteropServices;
using System.Drawing;
//设置钩子
[DllImport("user32.dll")]
public static extern int SetWindowsHookEx(int idHook, HookProc lpfn,
IntPtr hInstance, int threadID);
为什么编译时报错:找不到类型或命间名称HookProc?
同时智能感知无法引用HookProc。