From ef94d81050bb4d3b90b69441cbff97440e1f3664 Mon Sep 17 00:00:00 2001 From: Federico Angelilli Date: Thu, 8 Feb 2024 11:02:14 +0100 Subject: Add partial dwm support --- src/dwm.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/dwm.h (limited to 'src/dwm.h') diff --git a/src/dwm.h b/src/dwm.h new file mode 100644 index 0000000..eab8ddb --- /dev/null +++ b/src/dwm.h @@ -0,0 +1,14 @@ +#ifndef COMET_DWM_H +#define COMET_DWM_H + +#include "state.h" + +typedef struct DwmIpc DwmIpc; + +DwmIpc *dwm_create(State *state, const char *socket); + +void dwm_destroy(DwmIpc *dwm); + +#endif + +// vim: ts=4 sw=4 et -- cgit v1.2.3