include target-specific headers as done in testpixbuf-drawable.c

2001-05-03  Sven Neumann  <sven@convergence.de>

        * demos/testpixbuf-save.c: include target-specific headers as
        done in testpixbuf-drawable.c
This commit is contained in:
Sven Neumann
2001-05-03 09:38:07 +00:00
committed by Sven Neumann
parent ff73253c8d
commit d0d9f6449a
8 changed files with 44 additions and 4 deletions

View File

@ -1,10 +1,15 @@
#include <config.h>
/* if building outside GTK, remove /x11 part */
#include <gdk/x11/gdkx.h>
#include <gtk/gtk.h>
#include "config.h"
#include <stdio.h>
#include <gtk/gtk.h>
#ifdef GDK_WINDOWING_X11
#include <gdk/x11/gdkx.h>
#elif defined (GDK_WINDOWING_WIN32)
#include <gdk/win32/gdkwin32.h>
#endif
void
keypress_check (GtkWidget *widget, GdkEventKey *evt, gpointer data)