Currently the resource files in comdlg contain a listbox entry similar
to below:
LISTBOX IDC_SHELLSTATIC,4,20,272,85, LBS_SORT |
LBS_NOINTEGRALHEIGHT | LBS_MULTICOLUMN | WS_HSCROLL | NOT WS_VISIBLE
shouldn't it be
LISTBOX IDC_SHELLSTATIC,4,20,272,85, LBS_SORT |
LBS_NOINTEGRALHEIGHT | LBS_MULTICOLUMN | WS_HSCROLL
the NOT WS_VISIBLE causes windres errors (windres doesn't recognize NOT,
and even if it did, saying NOT WS_VISIBLE instead of just not |
WS_VISIBLE is redundant.), which causes the DLL to fail to build. While
this appears to be merely a goofup, figured i'd ask about it in the list
before i make any changes to the tree in case this is there for a reason.
Richard