cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
WNDCLASS object.
WNDCLASS object.
Sep 11, 2010 at 8:48pm UTC
esepich
(14)
WNDCLASS wc = { };
I see that a WNDCLASS object is being created and it is being named "wc". What I need to find out is what does "= { };" doing to the item wc. Is it being initialized in some way?
Thank you,
Sep
Sep 11, 2010 at 8:52pm UTC
Albatross
(4553)
If this is the Windows API, I suggest you try something else. That API is... not fun.
= {}
assigns a null object to wc.
-Albatross
Topic archived. No new replies allowed.