├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── include └── SneakCalls.hpp └── src ├── SneakCalls.cpp └── SneakCallsStub.asm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesundso/SneakCalls/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesundso/SneakCalls/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesundso/SneakCalls/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SneakCalls 2 | direct systemcalls with a modern c++20 interface. 3 | -------------------------------------------------------------------------------- /include/SneakCalls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesundso/SneakCalls/HEAD/include/SneakCalls.hpp -------------------------------------------------------------------------------- /src/SneakCalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesundso/SneakCalls/HEAD/src/SneakCalls.cpp -------------------------------------------------------------------------------- /src/SneakCallsStub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bytesundso/SneakCalls/HEAD/src/SneakCallsStub.asm --------------------------------------------------------------------------------