├── .gitattributes ├── COPYING ├── Default.table ├── Display.modes ├── English.lproj ├── Info.rtf └── Localizable.strings ├── Makefile ├── Makefile.driver_preamble ├── Makefile.postamble ├── Makefile.preamble ├── PB.project ├── README.md └── VBoxVideo_reloc.tproj ├── Load_Commands.sect ├── Makefile ├── Makefile.driver_preamble ├── Makefile.postamble ├── Makefile.preamble ├── PB.project ├── VBoxDefines.h ├── VBoxModes.h ├── VBoxVideo.h ├── VBoxVideo.m └── VBoxVideoAdapter.m /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/.gitattributes -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/COPYING -------------------------------------------------------------------------------- /Default.table: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/Default.table -------------------------------------------------------------------------------- /Display.modes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/Display.modes -------------------------------------------------------------------------------- /English.lproj/Info.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/English.lproj/Info.rtf -------------------------------------------------------------------------------- /English.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/English.lproj/Localizable.strings -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.driver_preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/Makefile.driver_preamble -------------------------------------------------------------------------------- /Makefile.postamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/Makefile.postamble -------------------------------------------------------------------------------- /Makefile.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/Makefile.preamble -------------------------------------------------------------------------------- /PB.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/PB.project -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/README.md -------------------------------------------------------------------------------- /VBoxVideo_reloc.tproj/Load_Commands.sect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/VBoxVideo_reloc.tproj/Load_Commands.sect -------------------------------------------------------------------------------- /VBoxVideo_reloc.tproj/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/VBoxVideo_reloc.tproj/Makefile -------------------------------------------------------------------------------- /VBoxVideo_reloc.tproj/Makefile.driver_preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/VBoxVideo_reloc.tproj/Makefile.driver_preamble -------------------------------------------------------------------------------- /VBoxVideo_reloc.tproj/Makefile.postamble: -------------------------------------------------------------------------------- 1 | -include $(LOCALMAKEFILEDIR)/Makefile.local_postamble 2 | -------------------------------------------------------------------------------- /VBoxVideo_reloc.tproj/Makefile.preamble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/VBoxVideo_reloc.tproj/Makefile.preamble -------------------------------------------------------------------------------- /VBoxVideo_reloc.tproj/PB.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/VBoxVideo_reloc.tproj/PB.project -------------------------------------------------------------------------------- /VBoxVideo_reloc.tproj/VBoxDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/VBoxVideo_reloc.tproj/VBoxDefines.h -------------------------------------------------------------------------------- /VBoxVideo_reloc.tproj/VBoxModes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/VBoxVideo_reloc.tproj/VBoxModes.h -------------------------------------------------------------------------------- /VBoxVideo_reloc.tproj/VBoxVideo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/VBoxVideo_reloc.tproj/VBoxVideo.h -------------------------------------------------------------------------------- /VBoxVideo_reloc.tproj/VBoxVideo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/VBoxVideo_reloc.tproj/VBoxVideo.m -------------------------------------------------------------------------------- /VBoxVideo_reloc.tproj/VBoxVideoAdapter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vcarosadev/VBoxVideo/HEAD/VBoxVideo_reloc.tproj/VBoxVideoAdapter.m --------------------------------------------------------------------------------