摘要:
#ifdef LRDLLTEST_EXPORTS #define LRDLLTEST_API __declspec(dllexport) #else #define LRDLLTEST_API __declspec(dllimport) #endif extern "C" LRDLLTEST_API 阅读全文
摘要:
# -*- coding: utf-8 -*- import pythoncom import pyHook import time import win32api import win32con def onMouseWheel(event): if event.Wheel == -1: win3 阅读全文
摘要:
from ctypes import *import PyHook3 as pyHookimport pythoncom def onKeyboardEvent1(event): print("onKeyboardEvent") pid = c_ulong(0) windowTitle = crea 阅读全文
摘要:
'''HookEvent Instance Methods string GetMessageName(self) Returns: Name of the event Class Variables MessageName Instance Variables integer Message Ke 阅读全文