I have some questions about using the winx/*.h files in conjunction with MinGW:
How should MinGW/include files be patched? Right now, I'm prepending the following right after the the first #ifdef/define pair:
ifdef GW32
include <winx/examplex.h>
endif
Is it better to include this outside the major #ifdef? After the contents of the header file?
I read that libgw32c's glibc/ header files shouldn't be included unless absent from mingw/include/, but the glibc functions getline and open_memstream (among others, I presume) are only available in glibc/stdio.h, and not in either winx/stdiox.h or MinGW's stdio.h. How should I include this header without a lot of conflicting definitions?
Thank you for your help,
Desbaine
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have some questions about using the winx/*.h files in conjunction with MinGW:
ifdef GW32
include <winx/examplex.h>
endif
Is it better to include this outside the major #ifdef? After the contents of the header file?
Thank you for your help,
Desbaine