├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── Resource.rc ├── XPConfirmationIDKeygen.sln ├── XPConfirmationIDKeygen.vcxproj ├── XPConfirmationIDKeygen.vcxproj.filters ├── main.c ├── msvcrt.lib ├── resource.h ├── xp_activate32.bat ├── xp_activate32.ico └── xp_activate32.manifest /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/README.md -------------------------------------------------------------------------------- /Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/Resource.rc -------------------------------------------------------------------------------- /XPConfirmationIDKeygen.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/XPConfirmationIDKeygen.sln -------------------------------------------------------------------------------- /XPConfirmationIDKeygen.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/XPConfirmationIDKeygen.vcxproj -------------------------------------------------------------------------------- /XPConfirmationIDKeygen.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/XPConfirmationIDKeygen.vcxproj.filters -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/main.c -------------------------------------------------------------------------------- /msvcrt.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/msvcrt.lib -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/resource.h -------------------------------------------------------------------------------- /xp_activate32.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/xp_activate32.bat -------------------------------------------------------------------------------- /xp_activate32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/xp_activate32.ico -------------------------------------------------------------------------------- /xp_activate32.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Endermanch/XPConfirmationIDKeygen/HEAD/xp_activate32.manifest --------------------------------------------------------------------------------