diff options
Diffstat (limited to 'man/xpmcreatedata.man')
-rw-r--r-- | man/xpmcreatedata.man | 48 |
1 files changed, 19 insertions, 29 deletions
diff --git a/man/xpmcreatedata.man b/man/xpmcreatedata.man index a59f528..91cd7df 100644 --- a/man/xpmcreatedata.man +++ b/man/xpmcreatedata.man @@ -22,45 +22,35 @@ .\" other dealing in this Software without prior written authorization .\" from the X Consortium. .\" - +.hw XImage .TH XpmCreateData __libmansuffix__ __xorgversion__ "libXpm functions" .SH NAME XpmCreateData \- create an Data structure .SH SYNOPSIS .HP -int XpmCreateDataFromImage(display, data_return, image, shapeimage, attributes) - Display *display; - char ***data_return; - XImage*image; - XImage*shapeimage; - XpmAttributes *attributes; - +int XpmCreateDataFromImage( Display *display, char ***data_return, XImage *image, XImage *shapeimage, XpmAttributes *attributes ); .HP -int XpmCreateDataFromPixmap(display, data_return, pixmap, shapemask, attributes) - Display *display; - char ***data_return; - Pixmappixmap; - Pixmapshapemask; - XpmAttributes *attributes; - +int XpmCreateDataFromPixmap( Display *display, char ***data_return, Pixmap pixmap, Pixmap shapemask, XpmAttributes *attributes ); .HP -int XpmCreateDataFromXpmImage(data_return, image, info) -char ***data_return; -XxpmImage*image; -XpmInfo*info; - +int XpmCreateDataFromXpmImage( char ***data_return, XpmImage *image, XpmInfo *info); .SH ARGUMENTS -.nf -display Specifies the connection to the X server. -data_return Returns the data which is created. -pixmap Specifies the pixmap. -shapemask Specifies the shape mask pixmap. -attributes Specifies the location of a structure containing information (or NULL). -info Specifies the location of a structure to get information. -image Specifies the image -.fi + +.IP \fIdisplay\fP li +Specifies the connection to the X server. +.IP \fIdata_return\fP li +Returns the data which is created. +.IP \fIpixmap\fP li +Specifies the pixmap. +.IP \fIshapemask\fP li +Specifies the shape mask pixmap. +.IP \fIattributes\fP li +Specifies the location of a structure containing information (or NULL). +.IP \fIinfo\fP li +Specifies the location of a structure to get information. +.IP \fIimage\fP li +Specifies the image .SH DESCRIPTION .SS XpmCreateDataFromImage |