我正在尝试在项目中使用Gma.UserActivityMonitor库,但我遇到了一个我自己无法克服的错误。
在文件中有一个使用以下代码(或多或少)HookManager.Callbacks.cs
调用的静态方法:EnsureSubscribedToGlobalMouseEvents
var asm = Assembly.GetExecutingAssembly().GetModules()[0];
var mar = Marshal.GetHINSTANCE(asm);
s_MouseHookHandle = SetWindowsHookEx(
WH_MOUSE_LL,
s_MouseDelegate,
mar,
0);
//If SetWindowsHookEx fails.
if (s_MouseHookHandle == 0)
{
//Returns the error code returned by the last unmanaged function called using platform invoke that has the DllImportAttribute.SetLastError flag set.
int errorCode = Marshal.GetLastWin32Error();
//do cleanup
//Initializes and throws a new instance of the Win32Exception class with the specified error.
throw new Win32Exception(errorCode);
}
SetWindowsHookEx
总是返回,上面的0
代码不断抛出异常,消息The specified module could not be found
和调用Marshal.GetLastWin32Error
返回代码126
。我可以成功运行 Gma.UserActivityMonitor 的原始项目提供的演示,但由于我的项目有点太复杂,无法在这里解释,我无法详细解释它与我的区别。我只是希望有人能盲猜这个问题。
顺便说一句,在项目的常见问题解答中,据说只有在调试项目时才检查其他人的问题(SetWindowsHookEx
返回错误) 。Enable Visual Studio hosting process
所以我取消选中了我的那个框,但我仍然遇到同样的问题,不仅是在调试模式下,而且当我在 Windows 资源管理器中双击发布文件时(不涉及 Visual Studio)。
为了提供更多信息,在演示项目(工作正常)中,asm
变量指向{Gma.UserActivityMonitor.dll}
和我的项目中抛出异常的相同!