├── .gitattributes ├── .gitignore ├── 2.TXT ├── ApiSpy ├── ApiSpy.cpp ├── ApiSpy.vcproj ├── CeApiSpy.rc ├── TrcView.cpp └── resource.h ├── ApiSpyDLL ├── ApiSpyDLL.sln └── ApiSpyDLL.vcproj ├── common ├── HTrace.cpp ├── HTrace.h ├── Interceptors.cpp ├── SpyControl.h ├── SpyEngine.cpp ├── SpyEngine.h └── SysDecls.h ├── coredll.list.txt ├── mwinreg.h ├── name_wince_syscalls.idc └── psyscall.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/.gitignore -------------------------------------------------------------------------------- /2.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/2.TXT -------------------------------------------------------------------------------- /ApiSpy/ApiSpy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/ApiSpy/ApiSpy.cpp -------------------------------------------------------------------------------- /ApiSpy/ApiSpy.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/ApiSpy/ApiSpy.vcproj -------------------------------------------------------------------------------- /ApiSpy/CeApiSpy.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/ApiSpy/CeApiSpy.rc -------------------------------------------------------------------------------- /ApiSpy/TrcView.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/ApiSpy/TrcView.cpp -------------------------------------------------------------------------------- /ApiSpy/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/ApiSpy/resource.h -------------------------------------------------------------------------------- /ApiSpyDLL/ApiSpyDLL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/ApiSpyDLL/ApiSpyDLL.sln -------------------------------------------------------------------------------- /ApiSpyDLL/ApiSpyDLL.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/ApiSpyDLL/ApiSpyDLL.vcproj -------------------------------------------------------------------------------- /common/HTrace.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/common/HTrace.cpp -------------------------------------------------------------------------------- /common/HTrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/common/HTrace.h -------------------------------------------------------------------------------- /common/Interceptors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/common/Interceptors.cpp -------------------------------------------------------------------------------- /common/SpyControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/common/SpyControl.h -------------------------------------------------------------------------------- /common/SpyEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/common/SpyEngine.cpp -------------------------------------------------------------------------------- /common/SpyEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/common/SpyEngine.h -------------------------------------------------------------------------------- /common/SysDecls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/common/SysDecls.h -------------------------------------------------------------------------------- /coredll.list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/coredll.list.txt -------------------------------------------------------------------------------- /mwinreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/mwinreg.h -------------------------------------------------------------------------------- /name_wince_syscalls.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/name_wince_syscalls.idc -------------------------------------------------------------------------------- /psyscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjgode/ApiSpy/HEAD/psyscall.h --------------------------------------------------------------------------------