diff options
| author | Federico Angelilli <code@fedang.net> | 2024-02-08 11:02:14 +0100 |
|---|---|---|
| committer | Federico Angelilli <code@fedang.net> | 2024-02-08 11:02:14 +0100 |
| commit | ef94d81050bb4d3b90b69441cbff97440e1f3664 (patch) | |
| tree | 9b8fc966298b04082a262edce140fc1ef61c4534 /src/dwm.h | |
| parent | 042dde0ef9b3ba213285066aacae105740422ac2 (diff) | |
Add partial dwm support
Diffstat (limited to 'src/dwm.h')
| -rw-r--r-- | src/dwm.h | 14 |
1 files changed, 14 insertions, 0 deletions
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 |
