// Hack to avoid these errors:
error C2065: 'WM_MOUSEWHEEL' : undeclared identifier
error C3861: 'GET_WHEEL_DELTA_WPARAM': identifier not found
- Add this to your code ->
#define _WIN32_WINNT 0x0501
Web 3.0, Computer Graphics, and Other Geek Stuff.
// Hack to avoid these errors:
error C2065: 'WM_MOUSEWHEEL' : undeclared identifier
error C3861: 'GET_WHEEL_DELTA_WPARAM': identifier not found
Posted by
Jonathan Maïm
at
9:33 AM
2 comments:
Another hack to avoid that kind of problems is to avoid Windows programming altogether ;) I know, that was an easy one. Sorry for that. :))
Hi Adrian, you're right ;-) Sometimes we don't have the choice, someone needs to use a windows exe ...
Post a Comment