Gdk API doc updates.

This commit is contained in:
Matthias Clasen
2002-10-22 22:11:22 +00:00
parent f1b8a1ce57
commit f900039c8f
25 changed files with 509 additions and 77 deletions

View File

@ -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)
{