Re: Resolve all include/wine/test.h dependencies, avoid an error with MSVC

2005-06-15 Thread Alexandre Julliard
"Dmitry Timoshkov" <[EMAIL PROTECTED]> writes: > "Alexandre Julliard" <[EMAIL PROTECTED]> wrote: > > > This isn't correct, the size is 2 only for standalone tests. > > The case above is protected by #ifdef STANDALONE so that shouldn't be an > issue. testlist.c defines STANDALONE too (yes it's

Re: Resolve all include/wine/test.h dependencies, avoid an error with MSVC

2005-06-14 Thread Dmitry Timoshkov
"Alexandre Julliard" <[EMAIL PROTECTED]> wrote: > > @@ -89,7 +91,7 @@ struct test > > void (*func)(void); > > }; > > > > -static const struct test winetest_testlist[]; > > +static const struct test winetest_testlist[2]; > > This isn't correct, the size is 2 only for standalone tests. The

Re: Resolve all include/wine/test.h dependencies, avoid an error with MSVC

2005-06-13 Thread Alexandre Julliard
Dmitry Timoshkov <[EMAIL PROTECTED]> writes: > @@ -89,7 +91,7 @@ struct test > void (*func)(void); > }; > > -static const struct test winetest_testlist[]; > +static const struct test winetest_testlist[2]; This isn't correct, the size is 2 only for standalone tests. Does something like thi