File: server.h

package info (click to toggle)
foot 1.26.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 3,692 kB
  • sloc: ansic: 41,627; python: 499; sh: 181; makefile: 18
file content (14 lines) | stat: -rw-r--r-- 420 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "fdm.h"
#include "config.h"
#include "reaper.h"
#include "wayland.h"

struct server;
struct server *server_init(struct config *conf, struct fdm *fdm,
                           struct reaper *reaper, struct wayland *wayl);
void server_destroy(struct server *server);

void server_global_theme_switch_to_dark(struct server *server);
void server_global_theme_switch_to_light(struct server *server);