├── .github └── FUNDING.yml ├── .gitignore └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: paypal.me/PMaillot # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2'] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Object files 5 | *.o 6 | *.ko 7 | *.obj 8 | *.elf 9 | 10 | # Linker output 11 | *.ilk 12 | *.map 13 | *.exp 14 | 15 | # Precompiled Headers 16 | *.gch 17 | *.pch 18 | 19 | # Libraries 20 | *.lib 21 | *.a 22 | *.la 23 | *.lo 24 | 25 | # Shared objects (inc. Windows DLLs) 26 | *.dll 27 | *.so 28 | *.so.* 29 | *.dylib 30 | 31 | # Executables 32 | *.exe 33 | *.out 34 | *.app 35 | *.i*86 36 | *.x86_64 37 | *.hex 38 | 39 | # Debug files 40 | *.dSYM/ 41 | *.su 42 | *.idb 43 | *.pdb 44 | 45 | # Kernel Module Compile Results 46 | *.mod* 47 | *.cmd 48 | .tmp_versions/ 49 | modules.order 50 | Module.symvers 51 | Mkfile.old 52 | dkms.conf 53 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wapi 2 | Current version: 3.0.5 3 | 4 | A C language API and libraries for Behringer's WING Digital Mixing Consoles on WIndows, MacOS and Linux computing platforms 5 | 6 | 7 | ![WING personal digital mixing console](https://mediadl.musictribe.com/media/PLM/data/images/products/P0BV2/2000Wx2000H/Image_BE_P0BV2_WING_Top_XL.png) 8 | 9 | Following the remarks from a Github user, this repository no longer contains the wapi library for not strictly complying to GPL licensing, and it became easier for me to just move it to another website. The wapi library and accompagnying demo/test programs can now be found as **free download** on a personal website at **https://x32ram.com/wapi** 10 | 11 | 12 | 13 | 14 | --------------------------------------------------------------------------------