I'm creating an application that locks down some functionality in running apps on Windows 10 and I would like to selectively disable/enable certain system-wide touch gestures using the Win32 C++ API on a standard windows desktop application (not UWP). I've attempted the solution outlined at the following link with no results:
Programmatically enable / disable multitouch finger input?
I attempted placing the recommended functionality in my window proc as well as executing the code before the message loop begins using the GlobalAddAtom(...) and neither approach worked. Reading the documentation didn't yield a reason why so I thought I'd ask the community. Does anybody know how to achieve this? Thank you community! :-)