libseat: Rename libseat_impl to seat_impl

This commit is contained in:
Kenny Levinsen 2020-08-05 23:33:01 +02:00
parent 493cc2a97d
commit 3586530d81
4 changed files with 13 additions and 13 deletions

View file

@ -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);