1
0
Fork 0
mirror of https://github.com/yshui/picom.git synced 2024-11-11 13:51:02 -05:00
picom/src/file_watch.h

11 lines
230 B
C
Raw Normal View History

#pragma once
#include <stdbool.h>
#include <ev.h>
typedef void (*file_watch_cb_t)(void *);
void *file_watch_init(EV_P);
bool file_watch_add(void *, const char *, file_watch_cb_t, void *);
void file_watch_destroy(EV_P_ void *);