Re: Janitorial : Use Compiler Warnings ( -Wmissing-declarations ) ( #1, take 2 )

2005-01-11 Thread Alexandre Julliard
Rémi Assailly <[EMAIL PROTECTED]> writes: > diff -u libs/wine/debug.c libs/wine/debug.c > --- libs/wine/debug.c 2005-01-10 20:12:34.748897920 +0100 > +++ libs/wine/debug.c 2005-01-10 19:18:26.0 +0100 > @@ -61,6 +61,9 @@ > return strcmp( name, *chan + 1 ); > } > > +void *__wine_dbg_

Re: Janitorial : Use Compiler Warnings ( -Wmissing-declarations ) ( #1 )

2005-01-10 Thread Alexandre Julliard
Rémi Assailly <[EMAIL PROTECTED]> writes: > Can we create "private" headers ? headers which will be only used in files > where > some declarations are missing ? No, at least not in this case. These are used in generated files that must not depend on other headers. -- Alexandre Julliard [EMAIL

Re: Janitorial : Use Compiler Warnings ( -Wmissing-declarations ) ( #1 )

2005-01-10 Thread Rémi Assailly
Selon Alexandre Julliard <[EMAIL PROTECTED]>: > Rémi Assailly <[EMAIL PROTECTED]> writes: > > > --- include/wine/library.h 2005-01-07 19:41:26.0 +0100 > > +++ include/wine/library.h 2005-01-07 19:49:41.389057824 +0100 > > @@ -42,6 +42,7 @@ > > extern void *wine_dlopen( const char *filen

Re: Janitorial : Use Compiler Warnings ( -Wmissing-declarations ) ( #1 )

2005-01-09 Thread Alexandre Julliard
Rémi Assailly <[EMAIL PROTECTED]> writes: > --- include/wine/library.h2005-01-07 19:41:26.0 +0100 > +++ include/wine/library.h2005-01-07 19:49:41.389057824 +0100 > @@ -42,6 +42,7 @@ > extern void *wine_dlopen( const char *filename, int flag, char *error, int > errorsize ); > ext