mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
10 lines
276 B
C
10 lines
276 B
C
#pragma once
|
|
|
|
#include "fdm.h"
|
|
#include "config.h"
|
|
#include "wayland.h"
|
|
|
|
struct server;
|
|
struct server *server_init(const struct config *conf, struct fdm *fdm,
|
|
struct reaper *reaper, struct wayland *wayl);
|
|
void server_destroy(struct server *server);
|