├── .gitignore ├── Cargo.toml ├── README.md ├── lib ├── vid.def └── vid.lib └── src ├── hyperv ├── hvgdk.h ├── vid.h └── viddefs.h ├── lib.rs └── wrapper.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenzel/vid-sys/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenzel/vid-sys/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenzel/vid-sys/HEAD/README.md -------------------------------------------------------------------------------- /lib/vid.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenzel/vid-sys/HEAD/lib/vid.def -------------------------------------------------------------------------------- /lib/vid.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenzel/vid-sys/HEAD/lib/vid.lib -------------------------------------------------------------------------------- /src/hyperv/hvgdk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenzel/vid-sys/HEAD/src/hyperv/hvgdk.h -------------------------------------------------------------------------------- /src/hyperv/vid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenzel/vid-sys/HEAD/src/hyperv/vid.h -------------------------------------------------------------------------------- /src/hyperv/viddefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenzel/vid-sys/HEAD/src/hyperv/viddefs.h -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenzel/vid-sys/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wenzel/vid-sys/HEAD/src/wrapper.h --------------------------------------------------------------------------------