I am trying to build an application that have exclusive access over a gamepad. Which mean when my application run, no other application will receive or react to the gamepad action like button press, wheel move,...
My approach to the present is using DirectInput, set flag: DISCL_EXCLUSIVE | DISCL_BACKGROUND.
However, I realize that it seems the DISCL_EXCLUSIVE has no effect? Whenever i set DISCL_EXCLUSIVE or DISCL_NONEXCLUSIVE it is the same.
And yesterday I found this: http://www.gamedev.net/topic/656250-directinput-exclusive-access-to-joypad/ According what he mention, this flag does nothing?
So is there any other solution for my problem? Thanks.