yohannc
yohannc

Reputation: 140

Creating virtual device

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

Answers (1)

MSalters
MSalters

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

Related Questions