From 3586530d815821e8c3acf70925a6d1b488a65e7b Mon Sep 17 00:00:00 2001 From: Kenny Levinsen Date: Wed, 5 Aug 2020 23:33:01 +0200 Subject: libseat: Rename libseat_impl to seat_impl --- include/backend.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/backend.h') 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); -- cgit v1.2.3