MCPcopy Create free account
hub / github.com/BestBurning/kmclassdll / MouseLeftButtonUp

Function MouseLeftButtonUp

kmclassdll.cpp:85–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

83}
84
85void __cdecl MouseLeftButtonUp()
86{
87 MOUSE_INPUT_DATA mid;
88 DWORD dwOutput;
89 memset(&mid, 0, sizeof(MOUSE_INPUT_DATA));
90 mid.ButtonFlags = MOUSE_LEFT_BUTTON_UP;
91 DeviceIoControl(drvhandle, IOCTL_MOUSE, &mid, sizeof(MOUSE_INPUT_DATA), NULL, 0, &dwOutput, NULL);
92}
93void __cdecl MouseRightButtonDown()
94{
95 MOUSE_INPUT_DATA mid;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected