1#include <stdio.h> 2#include <stdlib.h> 3#include <glib.h> 4#include <gtk/gtk.h> 5#include "pixman.h" 6 7void show_image (pixman_image_t *image); 8 9GdkPixbuf *pixbuf_from_argb32 (uint32_t *bits, 10 int width, 11 int height, 12 int stride); 13