├── .gitignore ├── API hashing.vcxproj ├── README.md ├── example.c ├── resolve.c └── resolve.h /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /API hashing.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/Windows-API-Hashing/HEAD/API hashing.vcxproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/Windows-API-Hashing/HEAD/README.md -------------------------------------------------------------------------------- /example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/Windows-API-Hashing/HEAD/example.c -------------------------------------------------------------------------------- /resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/Windows-API-Hashing/HEAD/resolve.c -------------------------------------------------------------------------------- /resolve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LloydLabs/Windows-API-Hashing/HEAD/resolve.h --------------------------------------------------------------------------------