├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── RtlWow64.sln ├── RtlWow64 ├── RtlNative.cpp ├── RtlNative.h ├── RtlWow64.cpp ├── RtlWow64.h ├── RtlWow64.vcxproj ├── RtlWow64.vcxproj.filters ├── dllmain.cpp └── m.def └── test ├── test.cpp ├── test.vcxproj └── test.vcxproj.filters /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/README.md -------------------------------------------------------------------------------- /RtlWow64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/RtlWow64.sln -------------------------------------------------------------------------------- /RtlWow64/RtlNative.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/RtlWow64/RtlNative.cpp -------------------------------------------------------------------------------- /RtlWow64/RtlNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/RtlWow64/RtlNative.h -------------------------------------------------------------------------------- /RtlWow64/RtlWow64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/RtlWow64/RtlWow64.cpp -------------------------------------------------------------------------------- /RtlWow64/RtlWow64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/RtlWow64/RtlWow64.h -------------------------------------------------------------------------------- /RtlWow64/RtlWow64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/RtlWow64/RtlWow64.vcxproj -------------------------------------------------------------------------------- /RtlWow64/RtlWow64.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/RtlWow64/RtlWow64.vcxproj.filters -------------------------------------------------------------------------------- /RtlWow64/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/RtlWow64/dllmain.cpp -------------------------------------------------------------------------------- /RtlWow64/m.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/RtlWow64/m.def -------------------------------------------------------------------------------- /test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/test/test.cpp -------------------------------------------------------------------------------- /test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/test/test.vcxproj -------------------------------------------------------------------------------- /test/test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bb107/RtlWow64/HEAD/test/test.vcxproj.filters --------------------------------------------------------------------------------