diff options
author | David Walter Seikel | 2013-01-13 17:29:19 +1000 |
---|---|---|
committer | David Walter Seikel | 2013-01-13 17:29:19 +1000 |
commit | 07274513e984f0b5544586c74508ccd16e7dcafa (patch) | |
tree | b32ff2a9136fbc1a4a6a0ed1e4d79cde0f5f16d9 /libraries/eina/src/lib/eina_binbuf.c | |
parent | Added Irrlicht 1.8, but without all the Windows binaries. (diff) | |
download | SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.zip SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.gz SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.bz2 SledjHamr-07274513e984f0b5544586c74508ccd16e7dcafa.tar.xz |
Remove EFL, since it's been released now.
Diffstat (limited to 'libraries/eina/src/lib/eina_binbuf.c')
-rw-r--r-- | libraries/eina/src/lib/eina_binbuf.c | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/libraries/eina/src/lib/eina_binbuf.c b/libraries/eina/src/lib/eina_binbuf.c deleted file mode 100644 index 3cbebd1..0000000 --- a/libraries/eina/src/lib/eina_binbuf.c +++ /dev/null | |||
@@ -1,62 +0,0 @@ | |||
1 | #ifdef HAVE_CONFIG_H | ||
2 | # include "config.h" | ||
3 | #endif | ||
4 | |||
5 | #include <stdio.h> | ||
6 | #include <string.h> | ||
7 | |||
8 | #ifdef HAVE_EVIL | ||
9 | # include <Evil.h> | ||
10 | #endif | ||
11 | |||
12 | #include "eina_private.h" | ||
13 | #include "eina_strbuf_common.h" | ||
14 | #include "eina_binbuf.h" | ||
15 | |||
16 | /*============================================================================* | ||
17 | * Local * | ||
18 | *============================================================================*/ | ||
19 | |||
20 | /** | ||
21 | * @cond LOCAL | ||
22 | */ | ||
23 | |||
24 | #ifdef _STRBUF_DATA_TYPE | ||
25 | # undef _STRBUF_DATA_TYPE | ||
26 | #endif | ||
27 | |||
28 | #ifdef _STRBUF_CSIZE | ||
29 | # undef _STRBUF_CSIZE | ||
30 | #endif | ||
31 | |||
32 | #ifdef _STRBUF_STRUCT_NAME | ||
33 | # undef _STRBUF_STRUCT_NAME | ||
34 | #endif | ||
35 | |||
36 | #ifdef _STRBUF_MAGIC | ||
37 | # undef _STRBUF_MAGIC | ||
38 | #endif | ||
39 | |||
40 | #ifdef _STRBUF_MAGIC_STR | ||
41 | # undef _STRBUF_MAGIC_STR | ||
42 | #endif | ||
43 | |||
44 | #ifdef _FUNC_EXPAND | ||
45 | # undef _FUNC_EXPAND | ||
46 | #endif | ||
47 | |||
48 | |||
49 | #define _STRBUF_DATA_TYPE unsigned char | ||
50 | #define _STRBUF_CSIZE sizeof(_STRBUF_DATA_TYPE) | ||
51 | #define _STRBUF_STRUCT_NAME Eina_Binbuf | ||
52 | #define _STRBUF_MAGIC EINA_MAGIC_BINBUF | ||
53 | #define _STRBUF_MAGIC_STR __BINBUF_MAGIC_STR | ||
54 | static const char __BINBUF_MAGIC_STR[] = "Eina Binbuf"; | ||
55 | |||
56 | #define _FUNC_EXPAND(y) eina_binbuf_ ## y | ||
57 | |||
58 | #include "eina_binbuf_template_c.x" | ||
59 | |||
60 | /** | ||
61 | * @endcond | ||
62 | */ | ||