GFXprim
2D bitmap graphics library with emphasis on speed and correctness
Toggle main menu visibility
Main Page
Topics
Data Structures
Data Structures
Data Structure Index
Data Fields
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Files
File List
Globals
All
g
j
Functions
g
Variables
Typedefs
g
Enumerations
g
j
Enumerator
g
Macros
g
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
Loading...
Searching...
No Matches
include
utils
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
17
typedef
struct
gp_htable
gp_htable
;
18
typedef
struct
gp_heap_head gp_heap_head;
19
typedef
struct
gp_fd
gp_fd
;
20
21
struct
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 */
gp_fd
An epoll file descriptor.
Definition
gp_poll.h:70
gp_htable
A hash table.
Definition
gp_htable.h:40
Generated by
1.9.8