2019-11-01 20:37:22 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include "fdm.h"
|
|
|
|
|
#include "config.h"
|
2022-02-07 19:35:52 +01:00
|
|
|
#include "reaper.h"
|
2019-11-01 20:37:22 +01:00
|
|
|
#include "wayland.h"
|
|
|
|
|
|
|
|
|
|
struct server;
|
2025-07-30 12:23:39 +02:00
|
|
|
struct server *server_init(struct config *conf, struct fdm *fdm,
|
2020-05-21 20:17:29 +02:00
|
|
|
struct reaper *reaper, struct wayland *wayl);
|
2019-11-01 20:37:22 +01:00
|
|
|
void server_destroy(struct server *server);
|
2025-07-30 12:23:39 +02:00
|
|
|
|
|
|
|
|
void server_global_theme_switch_to_1(struct server *server);
|
|
|
|
|
void server_global_theme_switch_to_2(struct server *server);
|