I need to implement a zoom in/out in a Windows Apllication which runs on a multi-touch screen.
After some progress, I understand I can't have both WM_GESTURE and WM_TOUCH at the same time. Before I was catching WM_GESTURE and then checking if GID_ZOOM was being sent, but know I must zoom in and out another way.
How should I implement this now using WM_TOUCH?
Thank you all!