We have the following definition:
/usr/local/include/wine/windows/winbase.h:#define STILL_ACTIVE STATUS_PENDING
This fails to compile under visual-mingw. Is this how it is defined under the MS headers? Does this mean that any app using STILL_ACTIVE must also include ntstatus.h?
"Dimitrie O. Paun" dpaun@rogers.com writes:
We have the following definition:
/usr/local/include/wine/windows/winbase.h:#define STILL_ACTIVE STATUS_PENDING
This fails to compile under visual-mingw. Is this how it is defined under the MS headers? Does this mean that any app using STILL_ACTIVE must also include ntstatus.h?
Actually STATUS_PENDING and a few others are duplicated in winnt.h on Windows, I'll fix that. But yes, on Windows you'd still have to include either winnt.h or ntstatus.h.