1 #ifndef ROTATEPIXBUF_H
2 #define ROTATEPIXBUF_H
3 
4 #include <gdk/gdkpixbuf.h>
5 #ifndef GDK_PIXBUF_TRANSFORM_H
6 
7 #define gdk_pixbuf_rotate_simple pv_gdk_pixbuf_rotate_simple
8 
9 typedef enum {
10 	GDK_PIXBUF_ROTATE_NONE             =   0,
11 	GDK_PIXBUF_ROTATE_COUNTERCLOCKWISE =  90,
12 	GDK_PIXBUF_ROTATE_UPSIDEDOWN       = 180,
13 	GDK_PIXBUF_ROTATE_CLOCKWISE        = 270
14 } GdkPixbufRotation;
15 
16 #endif
17 
18 GdkPixbuf *
19 pv_gdk_pixbuf_rotate_simple (const GdkPixbuf   *src,
20 			  GdkPixbufRotation angle);
21 
22 #endif
23