kiwmi/include/server.h

32 lines
880 B
C
Raw Normal View History

2019-02-17 12:19:28 +00:00
/* Copyright (c), Charlotte Meyer <dev@buffet.sh>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at https://mozilla.org/MPL/2.0/.
*/
#ifndef KIWMI_SERVER_H
#define KIWMI_SERVER_H
2019-03-26 20:45:00 +00:00
#include <stdbool.h>
2019-03-17 19:04:52 +00:00
#include "kiwmi/desktop/desktop.h"
2019-03-26 20:45:00 +00:00
#include "kiwmi/frontend.h"
2019-03-17 19:17:41 +00:00
#include "kiwmi/input/input.h"
2019-03-07 18:25:38 +00:00
2019-02-17 12:19:28 +00:00
struct kiwmi_server {
struct wl_display *wl_display;
2019-04-08 16:10:37 +00:00
struct wl_event_loop *wl_event_loop;
2019-02-17 12:19:28 +00:00
struct wlr_backend *backend;
const char *socket;
2019-03-17 19:04:52 +00:00
struct kiwmi_desktop desktop;
2019-03-17 19:17:41 +00:00
struct kiwmi_input input;
2019-03-26 20:45:00 +00:00
struct kiwmi_frontend frontend;
2019-02-17 12:19:28 +00:00
};
2019-03-26 20:45:00 +00:00
bool server_init(struct kiwmi_server *server, const char *frontend_path);
2019-02-18 11:37:23 +00:00
bool server_run(struct kiwmi_server *server);
2019-02-17 12:19:28 +00:00
void server_fini(struct kiwmi_server *server);
#endif /* KIWMI_SERVER_H */