mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-28 09:13:08 +03:00
23 lines
637 B
C
23 lines
637 B
C
|
/*
|
||
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
||
|
* Licensed under the GNU General Public License,
|
||
|
* http://www.opensource.org/licenses/gpl-license
|
||
|
* Copyright 2006 Daniel Silverstone <dsilvers@digital-scurf.org>
|
||
|
*/
|
||
|
|
||
|
#ifndef NS_GTK_BITMAP_H
|
||
|
#define NS_GTK_BITMAP_H
|
||
|
|
||
|
#include <gdk/gdk.h>
|
||
|
#include <gdk-pixbuf/gdk-pixbuf.h>
|
||
|
#include "netsurf/image/bitmap.h"
|
||
|
|
||
|
GdkPixbuf *gtk_bitmap_get_primary(struct bitmap*);
|
||
|
GdkPixbuf *gtk_bitmap_get_pretile_x(struct bitmap*);
|
||
|
GdkPixbuf *gtk_bitmap_get_pretile_y(struct bitmap*);
|
||
|
GdkPixbuf *gtk_bitmap_get_pretile_xy(struct bitmap*);
|
||
|
|
||
|
|
||
|
|
||
|
#endif /* NS_GTK_BITMAP_H */
|