├── .gitignore ├── .gitmodules ├── LICENSE ├── README ├── soswow64.sln └── soswow64 ├── exports.def ├── resource.h ├── soswow64.c ├── soswow64.h ├── soswow64.rc ├── soswow64.vcxproj ├── soswow64.vcxproj.filters └── targetver.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/README -------------------------------------------------------------------------------- /soswow64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/soswow64.sln -------------------------------------------------------------------------------- /soswow64/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/soswow64/exports.def -------------------------------------------------------------------------------- /soswow64/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/soswow64/resource.h -------------------------------------------------------------------------------- /soswow64/soswow64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/soswow64/soswow64.c -------------------------------------------------------------------------------- /soswow64/soswow64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/soswow64/soswow64.h -------------------------------------------------------------------------------- /soswow64/soswow64.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/soswow64/soswow64.rc -------------------------------------------------------------------------------- /soswow64/soswow64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/soswow64/soswow64.vcxproj -------------------------------------------------------------------------------- /soswow64/soswow64.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/soswow64/soswow64.vcxproj.filters -------------------------------------------------------------------------------- /soswow64/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/poizan42/soswow64/HEAD/soswow64/targetver.h --------------------------------------------------------------------------------