NO

Author Topic: What does this mean?  (Read 4912 times)

post from old forum

  • Guest
What does this mean?
« on: September 13, 2004, 08:59:26 PM »
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

  • Guest
What does this mean?
« Reply #1 on: September 13, 2004, 09:00:05 PM »
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