├── .gitignore ├── readme.md ├── spoofcall.sln └── spoofcall ├── spoof.asm ├── spoofcall.cpp ├── spoofcall.h ├── spoofcall.vcxproj ├── spoofcall.vcxproj.filters └── test.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloobaby/spoofcall/HEAD/.gitignore -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloobaby/spoofcall/HEAD/readme.md -------------------------------------------------------------------------------- /spoofcall.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloobaby/spoofcall/HEAD/spoofcall.sln -------------------------------------------------------------------------------- /spoofcall/spoof.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloobaby/spoofcall/HEAD/spoofcall/spoof.asm -------------------------------------------------------------------------------- /spoofcall/spoofcall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloobaby/spoofcall/HEAD/spoofcall/spoofcall.cpp -------------------------------------------------------------------------------- /spoofcall/spoofcall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloobaby/spoofcall/HEAD/spoofcall/spoofcall.h -------------------------------------------------------------------------------- /spoofcall/spoofcall.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloobaby/spoofcall/HEAD/spoofcall/spoofcall.vcxproj -------------------------------------------------------------------------------- /spoofcall/spoofcall.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/helloobaby/spoofcall/HEAD/spoofcall/spoofcall.vcxproj.filters -------------------------------------------------------------------------------- /spoofcall/test.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------