mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2026-04-23 11:10:38 +02:00
doc: move the sentinel attribute to unconfuse doxygen
The compiler doesn't care, doxygen apprently does.
This commit is contained in:
parent
97a7a3e360
commit
d21726965b
1 changed files with 4 additions and 4 deletions
|
|
@ -631,9 +631,9 @@ ei_seat_bind_capability(struct ei_seat *seat,
|
|||
* Same as ei_seat_bind_capability() but takes multiple capabilities,
|
||||
* terminated by NULL.
|
||||
*/
|
||||
__attribute__((sentinel))
|
||||
void
|
||||
ei_seat_bind_capabilities(struct ei_seat *seat, ...);
|
||||
ei_seat_bind_capabilities(struct ei_seat *seat, ...)
|
||||
__attribute__((sentinel));
|
||||
|
||||
/**
|
||||
* Unbind a seat's capability. This function indicates the the application is
|
||||
|
|
@ -651,9 +651,9 @@ ei_seat_unbind_capability(struct ei_seat *seat,
|
|||
* Same as ei_seat_unbind_capability() but takes multiple capabilities, terminated
|
||||
* by NULL.
|
||||
*/
|
||||
__attribute__((sentinel))
|
||||
void
|
||||
ei_seat_unbind_capabilities(struct ei_seat *seat, ...);
|
||||
ei_seat_unbind_capabilities(struct ei_seat *seat, ...)
|
||||
__attribute__((sentinel));
|
||||
|
||||
|
||||
struct ei_seat *
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue