What's the difference between these .... WNDCLASSW WNDSCLASSEX
I-m creating a new program C++ Code::Blocks ver. 17.12 WIN32 application
So.. I have created the main window an interface for my program, but I just break a bit and wander which is better to use of these two classes cause they have different suffixes W and Ex .. what are they stand for and which is better for use. Is some of these classes limited to do certain things, Please explain..
W is indicating the structure is a WIDE CHAR (Unicode) version of the generic WNDCLASS structure. Specifically for the character encoding of the menu and winclass name strings.
WNDCLASSEX is a generic macro name that is replaced by WNDCLASSEXA or WNDCLASSEXW depending on whether Unicode/_Unicode is defined or not.
Yes indeed I am using the WNDCLASSW .. so i should continue coding without any problems ..
thank you both Fury and fewdiefie .. you guys are so kind .. :)