GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_app_poll.h
1//SPDX-License-Identifier: LGPL-2.0-or-later
2
3/*
4
5 Copyright (c) 2014-2025 Cyril Hrubis <metan@ucw.cz>
6
7 */
8
13
14#ifndef WIDGETS_GP_APP_POLL_H
15#define WIDGETS_GP_APP_POLL_H
16
17#include <utils/gp_poll.h>
18
24void gp_app_poll_add(gp_fd *fd);
25
31void gp_app_poll_rem(gp_fd *fd);
32
39gp_fd *gp_app_poll_rem_by_fd(int fd);
40
41#endif /* WIDGETS_GP_APP_POLL_H */
A simple epoll wrapper.
An epoll file descriptor.
Definition gp_poll.h:70