├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── Makefile ├── README.md ├── qt ├── .gitignore ├── main.cpp └── qtdpi.pro └── xdpi.c /.gitignore: -------------------------------------------------------------------------------- 1 | xdpi 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oblomov/xdpi/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oblomov/xdpi/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oblomov/xdpi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oblomov/xdpi/HEAD/README.md -------------------------------------------------------------------------------- /qt/.gitignore: -------------------------------------------------------------------------------- 1 | .qmake.stash 2 | Makefile 3 | main.o 4 | qtdpi 5 | -------------------------------------------------------------------------------- /qt/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oblomov/xdpi/HEAD/qt/main.cpp -------------------------------------------------------------------------------- /qt/qtdpi.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oblomov/xdpi/HEAD/qt/qtdpi.pro -------------------------------------------------------------------------------- /xdpi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Oblomov/xdpi/HEAD/xdpi.c --------------------------------------------------------------------------------