vote up 1 vote down star

Hello

I have a HWND variable that I want to point to an hardcoded value, just for testing purposes. I guess that HWND is a typedef of (int*) so that is causing some kind of indirection. What should the correct code be like?

flag

0% accept rate
2  
By does not work do you mean does not compile or fails to execute? – JaredPar Jun 9 at 17:04

3 Answers

vote up 5 vote down

You can do: HWND hWnd = reintrepret_cast<HWND>(0x100); . Use explicit cast so that it is easy to find in the code.

link|flag
vote up 2 vote down

You can't hard code an HWND value. At best, it would not refer to an existing window. At worst, it would refer to some random window in the system.

Edit: To be clear, any tests you run using the hardcoded value will be meaningless. Your program uses that HWND for something. As soon as it passes the hardcoded HWND to an API function, either that function will fail (best case) or it will cause random, unpredictable effects in random processes (worst case).

link|flag
vote up 7 vote down
HWND abc = (HWND)(0x100);

Anyway, bad idea, but you already know that.

link|flag
2  
reintrepret_cast<HWND>(0x100): We are not lowly C programmers :-) – Martin York Jun 9 at 17:22
2  
"Lowly", pshaw! We prefer "terse and surly". – dmckee Jun 9 at 20:12

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.