├── .gitignore ├── PebLdr.cpp ├── PebLdr.h ├── PebLdr.vcxproj ├── PebLdr.vcxproj.filters ├── PebLdr.vcxproj.user ├── README.md ├── Source.cpp └── crc32.h /.gitignore: -------------------------------------------------------------------------------- 1 | *.vcx* 2 | x64/ 3 | Debug/ 4 | .gitignore -------------------------------------------------------------------------------- /PebLdr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfarom256/PebLdr/HEAD/PebLdr.cpp -------------------------------------------------------------------------------- /PebLdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfarom256/PebLdr/HEAD/PebLdr.h -------------------------------------------------------------------------------- /PebLdr.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfarom256/PebLdr/HEAD/PebLdr.vcxproj -------------------------------------------------------------------------------- /PebLdr.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfarom256/PebLdr/HEAD/PebLdr.vcxproj.filters -------------------------------------------------------------------------------- /PebLdr.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfarom256/PebLdr/HEAD/PebLdr.vcxproj.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfarom256/PebLdr/HEAD/README.md -------------------------------------------------------------------------------- /Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfarom256/PebLdr/HEAD/Source.cpp -------------------------------------------------------------------------------- /crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfarom256/PebLdr/HEAD/crc32.h --------------------------------------------------------------------------------