Xlib has a funciton called XAllocSizeHints to allocate a XSizeHints structure on the heap and set it to zero.
XSizeHints *sizehints;
sizehints=XAllocSizeHints();
However, can is it necessary to always use this function or I can do this:?
XSizeHints sizehints;
memset(&sizehints, 0, sizeof(XSizeHints));
I would like to know if it is possible to avoid XAllocWMHints and XAllocClassHint too.
Thanks.