├── .gitattributes ├── .gitignore ├── EarlyBirdNTDLL.cpp ├── EarlyBirdNTDLL.sln ├── EarlyBirdNTDLL.vcxproj ├── EarlyBirdNTDLL.vcxproj.filters ├── README.md ├── funcCall.h ├── functions.cpp └── structsFunc.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/EarlyBirdNTDLL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/EarlyBirdNTDLL/HEAD/.gitignore -------------------------------------------------------------------------------- /EarlyBirdNTDLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/EarlyBirdNTDLL/HEAD/EarlyBirdNTDLL.cpp -------------------------------------------------------------------------------- /EarlyBirdNTDLL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/EarlyBirdNTDLL/HEAD/EarlyBirdNTDLL.sln -------------------------------------------------------------------------------- /EarlyBirdNTDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/EarlyBirdNTDLL/HEAD/EarlyBirdNTDLL.vcxproj -------------------------------------------------------------------------------- /EarlyBirdNTDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/EarlyBirdNTDLL/HEAD/EarlyBirdNTDLL.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/EarlyBirdNTDLL/HEAD/README.md -------------------------------------------------------------------------------- /funcCall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/EarlyBirdNTDLL/HEAD/funcCall.h -------------------------------------------------------------------------------- /functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/EarlyBirdNTDLL/HEAD/functions.cpp -------------------------------------------------------------------------------- /structsFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/EarlyBirdNTDLL/HEAD/structsFunc.h --------------------------------------------------------------------------------