Tagged Questions

3
votes
2answers
389 views

PeekMessage not getting the message?

I've created a custom message type for use in resizing my Window, called WM_NEED_RESIZE. I've defined it in my .h file, and initialized in my .cpp file. I have also registered my WindowProc function ...
0
votes
2answers
162 views

Compiler can't find structures, what should i be including

UPDATE: I thought it was Windsows.h i need to include and you have confirmed this, but when i do include it i get a bunch of messages like the following... 1>C:\Program Files\Microsoft ...
0
votes
1answer
385 views

PeekMessage() Resetting the Mouse Cursor

Im currently messing around with changing the mouse cursor within a game like C++ application for Windows XP. To change the cursor I am using SetCursor() and passing in the desired cursor, which is ...