Dup Goto 📝

WakeScreen

PT2/dev/win32/input 10-03 11:30:36
To Pop
10 lines, 22 words, 257 chars Tuesday 2023-10-03 11:30:36

From this stackoverflow

#include <windows.h>

int main() {
  mouse_event(MOUSEEVENTF_MOVE, 0, 1, 0, 0);
  Sleep(40);
  mouse_event(MOUSEEVENTF_MOVE, 0, -1, 0, 0);
}