├── pyautocore ├── pythonutil.cpp ├── pyautocore.def ├── kbhook.h ├── mousehook.h ├── clipboard.h ├── pythonutil.h ├── makefile.mingw ├── pyautocore.h ├── clipboard.cpp ├── kbhook.cpp ├── mousehook.cpp ├── pyautocore.vcxproj └── pyautocore.cpp ├── doc ├── image │ └── mailaddress.png ├── footer.html ├── index.txt └── pyauto.py ├── __init__.py ├── appveyor.yml ├── sample ├── monitor │ └── monitor.py ├── shellexecute │ └── shellexecute.py ├── keymap │ ├── keymap.py │ ├── keymap_config.py │ ├── keymap_hook.py │ └── config.py ├── mouse │ └── mouse.py ├── window_enum │ └── window_enum.py ├── hook │ └── hook.py ├── key │ └── key.py ├── image │ └── image.py ├── window_dump │ └── window_dump.py ├── window_message │ └── window_message.py └── window_resize │ └── window_resize.py ├── .gitignore ├── LICENSE.md ├── pyauto.sln ├── tool ├── rst2html_pygments.py └── rst2html_pygments.css ├── makefile.py ├── pyauto_input.py └── pyauto_const.py /pyautocore/pythonutil.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyautocore/pyautocore.def: -------------------------------------------------------------------------------- 1 | LIBRARY pyautocore.pyd 2 | EXPORTS 3 | initpyautocore@0 4 | -------------------------------------------------------------------------------- /doc/image/mailaddress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crftwr/pyauto/HEAD/doc/image/mailaddress.png -------------------------------------------------------------------------------- /pyautocore/kbhook.h: -------------------------------------------------------------------------------- 1 | #ifndef KBHOOK_H 2 | #define KBHOOK_H 3 | 4 | extern void HookStart_Key(); 5 | extern void HookEnd_Key(); 6 | 7 | #endif//KBHOOK_H 8 | -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf_8 -*- 2 | 3 | from pyauto.pyautocore import * 4 | from pyauto.pyauto_input import * 5 | from pyauto.pyauto_const import * 6 | 7 | -------------------------------------------------------------------------------- /pyautocore/mousehook.h: -------------------------------------------------------------------------------- 1 | #ifndef MOUSEHOOK_H 2 | #define MOUSEHOOK_H 3 | 4 | extern void HookStart_Mouse(); 5 | extern void HookEnd_Mouse(); 6 | 7 | #endif//MOUSEHOOK_H 8 | -------------------------------------------------------------------------------- /doc/footer.html: -------------------------------------------------------------------------------- 1 |
4 |