Re: Missing macro in commctrl.h
Nikolay Sivov <[email protected]>
| Newsgroups | gmane.comp.emulators.wine.devel |
|---|---|
| Message-ID | <[email protected]> |
On 5/30/24 9:22 PM, Michael Dluhosch wrote: > Hi, > > is there a reason why this macro > https://learn.microsoft.com/en-us/windows/win32/api/commctrl/nf-commctrl-treeview_setcheckstate > is not defined in the wine version of commctrl.h? > I currently try to compile windows sources with winegcc which need > this macro. > > Kind Regards > Michael Hi, Michael. There is no reason we can't have it in our header. We don't use those macros in wine code because of SendMessage, instead we always use explicit -A or -W functions, and explicit types. that's one of the reason those macros might be missing or broken.