├── .gitignore ├── LICENSE ├── OpenXVD.sln ├── OpenXvd ├── OpenXvd.vcxproj ├── OpenXvd.vcxproj.filters ├── XVD_Main.cpp ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── xsapi.h └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebob/OpenXvd/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebob/OpenXvd/HEAD/LICENSE -------------------------------------------------------------------------------- /OpenXVD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebob/OpenXvd/HEAD/OpenXVD.sln -------------------------------------------------------------------------------- /OpenXvd/OpenXvd.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebob/OpenXvd/HEAD/OpenXvd/OpenXvd.vcxproj -------------------------------------------------------------------------------- /OpenXvd/OpenXvd.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebob/OpenXvd/HEAD/OpenXvd/OpenXvd.vcxproj.filters -------------------------------------------------------------------------------- /OpenXvd/XVD_Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebob/OpenXvd/HEAD/OpenXvd/XVD_Main.cpp -------------------------------------------------------------------------------- /OpenXvd/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebob/OpenXvd/HEAD/OpenXvd/stdafx.cpp -------------------------------------------------------------------------------- /OpenXvd/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebob/OpenXvd/HEAD/OpenXvd/stdafx.h -------------------------------------------------------------------------------- /OpenXvd/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebob/OpenXvd/HEAD/OpenXvd/targetver.h -------------------------------------------------------------------------------- /OpenXvd/xsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebob/OpenXvd/HEAD/OpenXvd/xsapi.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kebob/OpenXvd/HEAD/README.md --------------------------------------------------------------------------------