News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

What does this mean?

Started by post from old forum, September 13, 2004, 08:59:26 PM

Previous topic - Next topic

post from old forum

Hi Pelle,

I don't understand this line of code created by the Win32 application
wizard(A dialog based program) ...

if (!GetClassInfoEx(NULL, MAKEINTRESOURCE(32770), &wcx))
return 0;

What does "32770" means? A preregistered class for what?

Thanks Pelle,
Barney

post from old forum

From MSDN:
Class Description
ComboLBox The class for the list box contained in a combo box.
DDEMLEvent Windows NT/Windows 2000/Windows XP: The class for Dynamic Data Exchange Management Library (DDEML) events.
Message Windows 2000/Windows XP: The class for a message-only window.
#32768 The class for a menu.
#32769 The class for the desktop window.
#32770 The class for a dialog box.
#32771 The class for the task switch window.
#32772 Windows NT/Windows 2000/Windows XP: The class for icon titles.

Timppa