diff options
author | Kenny Levinsen <kl@kl.wtf> | 2020-08-05 23:33:01 +0200 |
---|---|---|
committer | Kenny Levinsen <kl@kl.wtf> | 2020-08-05 23:41:55 +0200 |
commit | 3586530d815821e8c3acf70925a6d1b488a65e7b (patch) | |
tree | 749d1d45df3c1cb5d0538f92e2e86739afa732f8 /include/backend.h | |
parent | 493cc2a97d8ac32ffc6e96e1cca4d45e15c1828e (diff) |
libseat: Rename libseat_impl to seat_impl
Diffstat (limited to 'include/backend.h')
-rw-r--r-- | include/backend.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/backend.h b/include/backend.h index e310a49..075f48c 100644 --- a/include/backend.h +++ b/include/backend.h @@ -3,19 +3,19 @@ #include "libseat.h" -struct libseat_impl; +struct seat_impl; struct libseat_seat_listener; struct libseat { - const struct libseat_impl *impl; + const struct seat_impl *impl; }; struct named_backend { const char *name; - const struct libseat_impl *backend; + const struct seat_impl *backend; }; -struct libseat_impl { +struct seat_impl { struct libseat *(*open_seat)(struct libseat_seat_listener *listener, void *data); int (*disable_seat)(struct libseat *seat); int (*close_seat)(struct libseat *seat); |