A couple of questions about headers... I wrote...
+#include <stdio.h>
First, does this end up using the right "stdio.h"? It won't be an issue once I switch over to the real wine debug macros... but I wasn't sure if, by doing this, I was going to get the wine printf() or the unix printf()? I wanted the wine one, so should I have been doing #include "msvcrt/stdio.h" instead? When I tried this, I got a bunch of conflicts with my unix headers.... Does it matter? Second:
+#include "windows.h"
would it be more general to do something like: #if defined(__WINE__) #include "windows.h" #else #include <windows.h> #endif Or is it OK, as is, for MSVC/cygwin? thanks for your patience and help, -- gmt "The purpose of government is to rein in the rights of the people" --President Bill Clinton, MTV interview, 1993
On November 4, 2002 11:19 pm, Greg Turner wrote:
+#include "windows.h"
would it be more general to do something like:
#if defined(__WINE__) #include "windows.h" #else #include <windows.h> #endif
Or is it OK, as is, for MSVC/cygwin?
The way you did it is just fine, don't do the more 'general' one. It gains you nothing but ugliness. ;) -- Dimi.
participants (2)
-
Dimitrie O. Paun -
Greg Turner