X-Git-Url: http://git.demorecorder.com/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fc-client.xsl;h=a15d824a16bed1fd17187a5937c034615b201186;hb=29cca33b9001961fa2c33bb9d9fe4a9983913fce;hp=d70b8b6b4804ee7579a62ec9e9309e7123ec8555;hpb=67af2d24e4c46580479570cf09586a54b84b1b63;p=free-sw%2Fxcb%2Flibxcb diff --git a/src/c-client.xsl b/src/c-client.xsl index d70b8b6..a15d824 100644 --- a/src/c-client.xsl +++ b/src/c-client.xsl @@ -97,31 +97,19 @@ authorization from the authors. xcb - - - _randr - - - _screensaver - - - _xf86dri - - - _xfixes - - - _xvmc - - - _ - - - - - - - + + _ + + + + + + + + + + + _ @@ -342,6 +330,24 @@ authorization from the authors. + /** + * Delivers a request to the X server + * @param c The connection + * @return A cookie + * + * Delivers a request to the X server. + * + + * This form can be used only if the request will not cause + * a reply to be generated. Any returned error will be + * saved for handling by xcb_request_check(). + + + * This form can be used only if the request will cause + * a reply to be generated. Any returned error will be + * placed in the event queue. + + */ + /** + * Return the reply + * @param c The connection + * @param cookie The cookie + * @param e The xcb_generic_error_t supplied + * + * Returns the reply of the request asked by + * + * The parameter @p e supplied to this function must be NULL if + * _unchecked(). is used. + * Otherwise, it stores the error if any. + * + * The returned value must be freed by the caller using free(). + */ @@ -950,6 +970,15 @@ authorization from the authors. + /** + * Return the iterator pointing to the last element + * @param i An _iterator_t + * @return The iterator pointing to the last element + * + * Set the current element in the iterator to the last element. + * The member rem is set to 0. The member data points to the + * last element. + */ xcb_generic_iterator_t ret;