GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Loading...
Searching...
No Matches
gp_types.h
Go to the documentation of this file.
1//SPDX-License-Identifier: LGPL-2.0-or-later
2
3/*
4
5 Copyright (c) 2014-2021 Cyril Hrubis <metan@ucw.cz>
6
7 */
8
14#ifndef UTILS_GP_TYPES_H
15#define UTILS_GP_TYPES_H
16
17typedef struct gp_htable gp_htable;
18typedef struct gp_heap_head gp_heap_head;
19typedef struct gp_fd gp_fd;
20
21struct gp_heap_head {
22 gp_heap_head *left;
23 gp_heap_head *right;
24 gp_heap_head *up;
25 unsigned long children;
26};
27
28#endif /* UTILS_GP_TYPES_H */
An epoll file descriptor.
Definition gp_poll.h:70
A hash table.
Definition gp_htable.h:40