Suppress USB device for use only in program

63 views Asked by At

I want to set up a driver of sorts for a USB device - written in C++ - in order to have more control over how its input is handled. The problem is that it has a default function that I don't want, and a different program also manages its input when it's open.

The ideal solution to this would be to have my program make the device not be recognised outside of itself, but I have no idea how to do that. I've been googling possible solutions, but to no avail. I have found an option to suppress the default input, but then the program could still recognise it.

Any help at all is welcome; I only need to know a general method for dealing with this problem, it shouldn't be hard to figure out the details on my own.

P.S.: This is kinda the starting point of my project, so please forgive me for not giving any code as context.

0

There are 0 answers