├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── dependencies └── scripthook │ └── index.md ├── examples ├── README.md └── gtapilot.py ├── gen.py ├── pyhookv.sln ├── pyhookv.vcxproj ├── pyhookv.vcxproj.filters └── src ├── custom.cpp ├── enums.cpp ├── natives.cpp ├── natives_type.h └── pyhookv.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/README.md -------------------------------------------------------------------------------- /dependencies/scripthook/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/dependencies/scripthook/index.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/gtapilot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/examples/gtapilot.py -------------------------------------------------------------------------------- /gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/gen.py -------------------------------------------------------------------------------- /pyhookv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/pyhookv.sln -------------------------------------------------------------------------------- /pyhookv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/pyhookv.vcxproj -------------------------------------------------------------------------------- /pyhookv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/pyhookv.vcxproj.filters -------------------------------------------------------------------------------- /src/custom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/src/custom.cpp -------------------------------------------------------------------------------- /src/enums.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/src/enums.cpp -------------------------------------------------------------------------------- /src/natives.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/src/natives.cpp -------------------------------------------------------------------------------- /src/natives_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/src/natives_type.h -------------------------------------------------------------------------------- /src/pyhookv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philkr/pyhookv/HEAD/src/pyhookv.cpp --------------------------------------------------------------------------------