|
libvirtualhid latest
Cross-platform C++ library for virtual HID devices.
|
libvirtualhid provides a platform-neutral C++ API for creating virtual input devices. The primary target is gamepad input for remote streaming hosts and other low-latency applications, with keyboard, mouse, touchscreen, trackpad, and pen tablet support available where the platform backend supports those device types.
Consumers work with portable concepts such as runtimes, device profiles, normalized gamepad state, output callbacks, and device nodes. Platform-specific details such as Linux uhid/uinput or the Windows UMDF/VHF driver package stay behind backend implementations.
uhid, plus keyboard, mouse, touchscreen, trackpad, and pen tablet devices through uinput.virtualhid_control native UI tool for creating, removing, controlling, and inspecting test gamepads through the public C++ API.add_subdirectory, or FetchContent.More complete examples live in examples/, including the streaming-host-oriented examples/gamepad_adapter.cpp.
libvirtualhid owns local virtual device creation and input/output report translation. It does not provide a network protocol, parse client packets, own a consumer application's configuration system, bypass anti-cheat systems, hide devices from the OS, or ship a Windows kernel-mode driver.
Linux and Windows are the active backends. Linux uses standard user-space kernel interfaces. Windows remains user-mode: the C++ library talks to a UMDF2 control driver, and the driver publishes HID gamepads through VHF. macOS support is not implemented yet.
The library is designed around gamepad use first because remote streaming hosts are the first consumer class. Non-gamepad device types are available through the same API where the backend exposes them.
Alternatives exist if libvirtualhid does not meet your needs.
| Feature | libvirtualhid | ViGEmBus | HIDMaestro | inputtino | WinUHid |
|---|---|---|---|---|---|
| Windows support | â | â | â | â | â |
| Linux support | â | â | â | â | â |
| Windows AMD64 support | â | â | â | - | â |
| Windows ARM64 support | â5 | â | â6 | - | â |
| Windows user-mode driver | â | â | â | - | â |
| No Windows kernel-mode driver | â | â | â | - | â |
| Descriptor-defined HID devices | â | â | â | â 1 | â |
| Platform-neutral C++ API | â | â2 | â2 | â3 | â2 |
| Keyboard | â | â | â | â | â 4 |
| Mouse | â | â | â | â | â 4 |
| Touchscreen, trackpad, or pen | â | â | â | â | â 4 |
| Generic HID gamepad | â | â | â | â | â 4 |
| Xbox 360 gamepad | â | â | â | â | â 4 |
| Xbox One gamepad | â | â | â | â | â 4 |
| Xbox Series gamepad | â | â | â | â | â 4 |
| DualShock 4 gamepad | â | â | â | â | â 4 |
| DualSense gamepad | â | â | â | â | â 4 |
| Nintendo Switch Pro-style gamepad | â | â | â | â | â 4 |
| Rumble or output callbacks | â | â | â | â | â 4 |
| Data-driven profiles | â | â | â | â | â |
| Actively developed | â | â | â | â | â |
1 inputtino uses uhid for virtual joypads; its other listed device types use Linux input interfaces rather than generic HID descriptors.
2 Windows-only project, so it does not provide a platform-neutral API surface.
3 Linux-only project, so it does not provide a platform-neutral API surface.
4 WinUHid is a framework-level virtual HID target; support requires a custom HID descriptor and matching report handling rather than a ready-made device profile.
5 libvirtualhid has architecture-aware WiX packaging, but the built Windows driver package target is AMD64 today. Windows ARM64 release driver packages require a Microsoft dashboard signing path, such as WHQL/Hardware Dev Center signing; the current Azure Trusted Signing catalog/MSI flow is not sufficient for ARM64 release driver package installation.
6 HIDMaestro documents a win-x64 test app path and does not currently advertise an ARM64 build.
The cross-platform libvirtualhid library is licensed under the MIT License. The Windows UMDF driver source and generated Windows driver package artifacts, including the driver MSI, are licensed under the LizardByte Source-Available License 1.0 (LB-SAL 1.0). See the license map for the full repository split.