Reputation: 140
My goal is to emulate one or more virtual gamepads, visible in games (with their custom names), and mapped to one or multiple physical devices, like keyboard and mouse.
Thank you !
Upvotes: 4
Views: 2960
Reputation: 180245
Yes, it's possible. The Windows driver architecture needs such support to allow USB drivers to load on the fly. You will need a custom device driver. There are existing "virtual" device drivers, e.g. for NUL
, but those aren't what you want.
However, device driver writing isn't for the faint of heart. You really can't expect to read a single article and start hacking.
Upvotes: 3