├── .gitignore ├── 3rdparty ├── README.txt └── d2d1.h ├── UNLICENSE ├── chuniio ├── chuniio.c ├── chuniio.def ├── chuniio.h └── meson.build ├── create-touch-window ├── create-touch-window.c ├── create-touch-window.h ├── dllmain.c └── meson.build ├── cross-mingw-32.txt ├── cross-mingw-64.txt ├── leap-configurator ├── leap-configurator.c └── meson.build ├── leapio ├── leapio.c ├── leapio.h └── meson.build ├── log.h ├── meson.build ├── precompiled.h ├── readme.md └── subprojects └── capnhook.wrap /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/.gitignore -------------------------------------------------------------------------------- /3rdparty/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/3rdparty/README.txt -------------------------------------------------------------------------------- /3rdparty/d2d1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/3rdparty/d2d1.h -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/UNLICENSE -------------------------------------------------------------------------------- /chuniio/chuniio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/chuniio/chuniio.c -------------------------------------------------------------------------------- /chuniio/chuniio.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/chuniio/chuniio.def -------------------------------------------------------------------------------- /chuniio/chuniio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/chuniio/chuniio.h -------------------------------------------------------------------------------- /chuniio/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/chuniio/meson.build -------------------------------------------------------------------------------- /create-touch-window/create-touch-window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/create-touch-window/create-touch-window.c -------------------------------------------------------------------------------- /create-touch-window/create-touch-window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/create-touch-window/create-touch-window.h -------------------------------------------------------------------------------- /create-touch-window/dllmain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/create-touch-window/dllmain.c -------------------------------------------------------------------------------- /create-touch-window/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/create-touch-window/meson.build -------------------------------------------------------------------------------- /cross-mingw-32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/cross-mingw-32.txt -------------------------------------------------------------------------------- /cross-mingw-64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/cross-mingw-64.txt -------------------------------------------------------------------------------- /leap-configurator/leap-configurator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/leap-configurator/leap-configurator.c -------------------------------------------------------------------------------- /leap-configurator/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/leap-configurator/meson.build -------------------------------------------------------------------------------- /leapio/leapio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/leapio/leapio.c -------------------------------------------------------------------------------- /leapio/leapio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/leapio/leapio.h -------------------------------------------------------------------------------- /leapio/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/leapio/meson.build -------------------------------------------------------------------------------- /log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/log.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/meson.build -------------------------------------------------------------------------------- /precompiled.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/precompiled.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/readme.md -------------------------------------------------------------------------------- /subprojects/capnhook.wrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nat-Lab/chunithm-touch/HEAD/subprojects/capnhook.wrap --------------------------------------------------------------------------------