Some years back I wrote a C++ dll in Visual Studio 6.0
It contains mouse hook, keyboard hook and also winevent
I tried converting it into Visual Studio 2008. When I opened the project in VS 2008, as usual, I got the message that the .dsp file needs to be converted. I selected "yes to all". But the code does not compile. I got the error that "winable.h" is not found. I changed it to "winuser.h". But now lots of contants related to MSAA are not recognized and I still get compiler error.
How to fix this problem?
Thanks.