summaryrefslogtreecommitdiff
path: root/apps/codecs/dumb/include/internal/dumb.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/dumb/include/internal/dumb.h')
-rw-r--r--apps/codecs/dumb/include/internal/dumb.h58
1 files changed, 0 insertions, 58 deletions
diff --git a/apps/codecs/dumb/include/internal/dumb.h b/apps/codecs/dumb/include/internal/dumb.h
deleted file mode 100644
index b4cd0ab1c4..0000000000
--- a/apps/codecs/dumb/include/internal/dumb.h
+++ /dev/null
@@ -1,58 +0,0 @@
1/* _______ ____ __ ___ ___
2 * \ _ \ \ / \ / \ \ / / ' ' '
3 * | | \ \ | | || | \/ | . .
4 * | | | | | | || ||\ /| |
5 * | | | | | | || || \/ | | ' ' '
6 * | | | | | | || || | | . .
7 * | |_/ / \ \__// || | |
8 * /_______/ynamic \____/niversal /__\ /____\usic /| . . ibliotheque
9 * / \
10 * / . \
11 * internal/dumb.h - DUMB's internal declarations. / / \ \
12 * | < / \_
13 * This header file provides access to the | \/ /\ /
14 * internal structure of DUMB, and is liable \_ / > /
15 * to change, mutate or cease to exist at any | \ / /
16 * moment. Include it at your own peril. | ' /
17 * \__/
18 * ...
19 *
20 * I mean it, people. You don't need access to anything in this file. If you
21 * disagree, contact the authors. In the unlikely event that you make a good
22 * case, we'll add what you need to dumb.h. Thanking you kindly.
23 */
24
25#ifndef INTERNAL_DUMB_H
26#define INTERNAL_DUMB_H
27
28
29typedef struct DUH_SIGTYPE_DESC_LINK
30{
31 struct DUH_SIGTYPE_DESC_LINK *next;
32 DUH_SIGTYPE_DESC *desc;
33}
34DUH_SIGTYPE_DESC_LINK;
35
36
37typedef struct DUH_SIGNAL
38{
39 sigdata_t *sigdata;
40 DUH_SIGTYPE_DESC *desc;
41}
42DUH_SIGNAL;
43
44
45struct DUH
46{
47 long length;
48
49 int n_signals;
50 DUH_SIGNAL **signal;
51};
52
53
54DUH_SIGTYPE_DESC *_dumb_get_sigtype_desc(long type);
55
56
57#endif /* INTERNAL_DUMB_H */
58