I want to create a screen saver in C++ using OpenGL. The command line sent to my app for previewing the screen saver in a small window contains a number which is the hwnd of the small monitor window in screen saver control panel applet. how can I convert this string to a valid hwnd?

link|improve this question
feedback

1 Answer

From INFO: Screen Saver Command Line Arguments:

<HWND> is a HWND presented on the command line as an unsigned decimal number.

So, convert the decimal number to an unsigned int and then cast to HWND. For example:

(HWND)atoi(argv[n])

where argv[n] is the argument where the HWND value is found.

Pedant's corner: My use of atoi() can probably be improved, since the number on the command line is unsigned. Feel free.

link|improve this answer
1  
Duct Tape Programmer (TM)- certified design :) – Kos Dec 29 '11 at 8:46
can you please provide me with a sample code? – Sina Dec 29 '11 at 8:48
here it is: HWND h = atoi(argv[5]); – blaze Dec 29 '11 at 8:53
Thank you so much dude! – Sina Dec 29 '11 at 8:55
feedback

Your Answer

 
or
required, but never shown

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