diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2002-10-22 22:11:22 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2002-10-22 22:11:22 +0000 |
commit | f900039c8f0562119aa7e66105155449a07ab721 (patch) | |
tree | e73359ef3eee1ce1d8b0266b700847c698e40302 /gdk/x11/gdkimage-x11.c | |
parent | f1b8a1ce57eb238241b2f7944c3374a4d1067155 (diff) | |
download | gtk+-f900039c8f0562119aa7e66105155449a07ab721.tar.gz |
Gdk API doc updates.
Diffstat (limited to 'gdk/x11/gdkimage-x11.c')
-rw-r--r-- | gdk/x11/gdkimage-x11.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gdk/x11/gdkimage-x11.c b/gdk/x11/gdkimage-x11.c index 6db8345020..b08a553a69 100644 --- a/gdk/x11/gdkimage-x11.c +++ b/gdk/x11/gdkimage-x11.c @@ -790,6 +790,14 @@ gdk_x11_image_destroy (GdkImage *image) image->windowing_data = NULL; } +/** + * gdk_x11_image_get_xdisplay: + * @image: a #GdkImage. + * + * Returns the display of a #GdkImage. + * + * Return value: an Xlib <type>Display*</type>. + **/ Display * gdk_x11_image_get_xdisplay (GdkImage *image) { @@ -802,6 +810,14 @@ gdk_x11_image_get_xdisplay (GdkImage *image) return GDK_SCREEN_XDISPLAY (private->screen); } +/** + * gdk_x11_image_get_ximage: + * @image: a #GdkImage. + * + * Returns the X image belonging to a #GdkImage. + * + * Return value: an <type>XImage*</type>. + **/ XImage * gdk_x11_image_get_ximage (GdkImage *image) { |