mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-05 13:29:50 -05:00
doc: Fix function membership
Put the various misplaced functions in the right class; partly because its where they belong, and partly to make intra-class \ref(erences) happy. Signed-off-by: Jonas Ådahl <jadahl@gmail.com> Reviewed-by: Daniel Stone <daniels@collabora.com> Reviewed-by: Derek Foreman <derekf@osg.samsung.com>
This commit is contained in:
parent
2e7fb78682
commit
edbee66cbd
2 changed files with 7 additions and 7 deletions
|
|
@ -103,8 +103,8 @@ struct wl_proxy;
|
||||||
* queue, reading all the data from the display fd. If the application
|
* queue, reading all the data from the display fd. If the application
|
||||||
* would call \em poll(2) after that it would block, even though there
|
* would call \em poll(2) after that it would block, even though there
|
||||||
* might be events queued on the default queue. Those events should be
|
* might be events queued on the default queue. Those events should be
|
||||||
* dispatched with \ref wl_display_dispatch_(queue_)pending() before
|
* dispatched with \ref wl_display_dispatch_pending() or \ref
|
||||||
* flushing and blocking.
|
* wl_display_dispatch_queue_pending() before flushing and blocking.
|
||||||
*/
|
*/
|
||||||
struct wl_display;
|
struct wl_display;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -309,7 +309,7 @@ wl_event_queue_destroy(struct wl_event_queue *queue)
|
||||||
* \return A new event queue associated with this display or NULL on
|
* \return A new event queue associated with this display or NULL on
|
||||||
* failure.
|
* failure.
|
||||||
*
|
*
|
||||||
* \memberof wl_event_queue
|
* \memberof wl_display
|
||||||
*/
|
*/
|
||||||
WL_EXPORT struct wl_event_queue *
|
WL_EXPORT struct wl_event_queue *
|
||||||
wl_display_create_queue(struct wl_display *display)
|
wl_display_create_queue(struct wl_display *display)
|
||||||
|
|
@ -965,7 +965,7 @@ static const struct wl_callback_listener sync_listener = {
|
||||||
* with calling wl_display_prepare_read() and wl_display_read_events())
|
* with calling wl_display_prepare_read() and wl_display_read_events())
|
||||||
*
|
*
|
||||||
* \sa wl_display_roundtrip()
|
* \sa wl_display_roundtrip()
|
||||||
* \memberof wl_event_queue
|
* \memberof wl_display
|
||||||
*/
|
*/
|
||||||
WL_EXPORT int
|
WL_EXPORT int
|
||||||
wl_display_roundtrip_queue(struct wl_display *display, struct wl_event_queue *queue)
|
wl_display_roundtrip_queue(struct wl_display *display, struct wl_event_queue *queue)
|
||||||
|
|
@ -1465,7 +1465,7 @@ wl_display_prepare_read_queue(struct wl_display *display,
|
||||||
* with the default queue passed as the queue.
|
* with the default queue passed as the queue.
|
||||||
*
|
*
|
||||||
* \sa wl_display_prepare_read_queue
|
* \sa wl_display_prepare_read_queue
|
||||||
* \memberof wl_event_queue
|
* \memberof wl_display
|
||||||
*/
|
*/
|
||||||
WL_EXPORT int
|
WL_EXPORT int
|
||||||
wl_display_prepare_read(struct wl_display *display)
|
wl_display_prepare_read(struct wl_display *display)
|
||||||
|
|
@ -1527,7 +1527,7 @@ wl_display_cancel_read(struct wl_display *display)
|
||||||
* \sa wl_display_dispatch(), wl_display_dispatch_pending(),
|
* \sa wl_display_dispatch(), wl_display_dispatch_pending(),
|
||||||
* wl_display_dispatch_queue_pending()
|
* wl_display_dispatch_queue_pending()
|
||||||
*
|
*
|
||||||
* \memberof wl_event_queue
|
* \memberof wl_display
|
||||||
*/
|
*/
|
||||||
WL_EXPORT int
|
WL_EXPORT int
|
||||||
wl_display_dispatch_queue(struct wl_display *display,
|
wl_display_dispatch_queue(struct wl_display *display,
|
||||||
|
|
@ -1599,7 +1599,7 @@ wl_display_dispatch_queue(struct wl_display *display,
|
||||||
* event queue. On failure -1 is returned and errno set appropriately.
|
* event queue. On failure -1 is returned and errno set appropriately.
|
||||||
* If there are no events queued, this function returns immediately.
|
* If there are no events queued, this function returns immediately.
|
||||||
*
|
*
|
||||||
* \memberof wl_event_queue
|
* \memberof wl_display
|
||||||
* \since 1.0.2
|
* \since 1.0.2
|
||||||
*/
|
*/
|
||||||
WL_EXPORT int
|
WL_EXPORT int
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue