mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
Hooks are functions executed just before going into a poll(). Or just after executing all FD handlers, if you like.
23 lines
691 B
C
23 lines
691 B
C
#pragma once
|
|
|
|
#include <stdbool.h>
|
|
|
|
struct fdm;
|
|
|
|
typedef bool (*fdm_handler_t)(struct fdm *fdm, int fd, int events, void *data);
|
|
typedef void (*fdm_hook_t)(struct fdm *fdm, void *data);
|
|
|
|
struct fdm *fdm_init(void);
|
|
void fdm_destroy(struct fdm *fdm);
|
|
|
|
bool fdm_add(struct fdm *fdm, int fd, int events, fdm_handler_t handler, void *data);
|
|
bool fdm_del(struct fdm *fdm, int fd);
|
|
bool fdm_del_no_close(struct fdm *fdm, int fd);
|
|
|
|
bool fdm_event_add(struct fdm *fdm, int fd, int events);
|
|
bool fdm_event_del(struct fdm *fdm, int fd, int events);
|
|
|
|
bool fdm_hook_add(struct fdm *fdm, fdm_hook_t hook, void *data);
|
|
bool fdm_hook_del(struct fdm *fdm, fdm_hook_t hook);
|
|
|
|
bool fdm_poll(struct fdm *fdm);
|