plug-ins/FractalExplorer/FractalExplorer.c plug-ins/common/animationplay.c

2000-12-17  Michael Natterer  <mitch@gimp.org>

	* plug-ins/FractalExplorer/FractalExplorer.c
	* plug-ins/common/animationplay.c
	* plug-ins/common/gz.c
	* plug-ins/common/hrz.c
	* plug-ins/common/pat.c
	* plug-ins/common/pnm.c
	* plug-ins/common/ps.c. #ifdef early inclusion of <glib.h> with
	G_OS_WIN32. Avoids warnings about redefinition of MIN and MAX.
	Some #include cleanups.
This commit is contained in:
Michael Natterer 2000-12-17 16:50:00 +00:00 committed by Michael Natterer
parent 99e8d420aa
commit 59be62713c
10 changed files with 24 additions and 22 deletions

View File

@ -1,3 +1,15 @@
2000-12-17 Michael Natterer <mitch@gimp.org>
* plug-ins/FractalExplorer/FractalExplorer.c
* plug-ins/common/animationplay.c
* plug-ins/common/gz.c
* plug-ins/common/hrz.c
* plug-ins/common/pat.c
* plug-ins/common/pnm.c
* plug-ins/common/ps.c. #ifdef early inclusion of <glib.h> with
G_OS_WIN32. Avoids warnings about redefinition of MIN and MAX.
Some #include cleanups.
2000-12-17 Michael Natterer <mitch@gimp.org>
* app/menus.c: don't warn about a non-existant "Script-Fu" menu.

View File

@ -51,13 +51,15 @@
#include "config.h"
#include <glib.h> /* Include early for G_OS_WIN32 */
#ifdef G_OS_WIN32
#include <glib.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <math.h>
#ifdef HAVE_DIRENT_H
#include <dirent.h>
#endif
@ -80,8 +82,6 @@
#endif
#endif
#include <gtk/gtk.h>
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>

View File

@ -105,6 +105,7 @@
*
* write other half of the user interface (default timing, disposal &c)
*/
#include "config.h"
#include <stdlib.h>
@ -112,9 +113,9 @@
#include <string.h>
#include <ctype.h>
#ifdef G_OS_WIN32
#include <glib.h>
#if defined (G_OS_WIN32)
/* This just to be able to include windows.h and undef RGB */
#define WinMain WinMain_foo
#include <windows.h>

View File

@ -58,9 +58,9 @@
#include "config.h"
#include <glib.h> /* For G_OS_WIN32 */
#ifdef G_OS_WIN32
#include <glib.h>
#define STRICT
#define WinMain WinMain_foo
#include <windows.h>

View File

@ -58,9 +58,9 @@
#include "config.h"
#include <glib.h> /* For G_OS_WIN32 */
#ifdef G_OS_WIN32
#include <glib.h>
#define STRICT
#define WinMain WinMain_foo
#include <windows.h>

View File

@ -33,7 +33,9 @@
#include "config.h"
#ifdef G_OS_WIN32
#include <glib.h>
#endif
#include <setjmp.h>
#include <sys/types.h>
@ -46,7 +48,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#ifdef HAVE_MMAP
#include <sys/mman.h>
#endif
@ -59,8 +60,6 @@
#define _O_BINARY 0
#endif
#include <gtk/gtk.h>
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>

View File

@ -19,9 +19,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <gtk/gtk.h>
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>

View File

@ -38,9 +38,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <gtk/gtk.h>
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>

View File

@ -71,8 +71,6 @@ static char ident[] = "@(#) GIMP PostScript/PDF file-plugin v1.11 31-Aug-2000";
#include <string.h>
#include <time.h>
#include <gtk/gtk.h>
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>

View File

@ -71,8 +71,6 @@ static char ident[] = "@(#) GIMP PostScript/PDF file-plugin v1.11 31-Aug-2000";
#include <string.h>
#include <time.h>
#include <gtk/gtk.h>
#include <libgimp/gimp.h>
#include <libgimp/gimpui.h>