Re: ntdll: Fix compilation on systems that don't support nameless structs.
12 Feb
2007
12 Feb
'07
12:07 p.m.
Francois Gouget <fgouget(a)free.fr> writes:
diff --git a/dlls/ntdll/rtl.c b/dlls/ntdll/rtl.c index 34a05b7..4d5c41d 100644 --- a/dlls/ntdll/rtl.c +++ b/dlls/ntdll/rtl.c @@ -40,6 +40,12 @@
WINE_DEFAULT_DEBUG_CHANNEL(ntdll);
+#ifdef NONAMELESSSTRUCT +# define S(x) (x).s +#else +# define S(x) (x) +#endif +
You shouldn't need that sort of macro in the Wine code. Simply define NONAMELESSSTRUCT unconditionally. -- Alexandre Julliard julliard(a)winehq.org
6884
Age (days ago)
6884
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard