aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/ecore/src/lib/ecore_config/ecore_config_util.h
diff options
context:
space:
mode:
authorDavid Walter Seikel2013-01-13 17:29:19 +1000
committerDavid Walter Seikel2013-01-13 17:29:19 +1000
commit07274513e984f0b5544586c74508ccd16e7dcafa (patch)
treeb32ff2a9136fbc1a4a6a0ed1e4d79cde0f5f16d9 /libraries/ecore/src/lib/ecore_config/ecore_config_util.h
parentAdded Irrlicht 1.8, but without all the Windows binaries. (diff)
downloadSledjHamr-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 '')
-rw-r--r--libraries/ecore/src/lib/ecore_config/ecore_config_util.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/libraries/ecore/src/lib/ecore_config/ecore_config_util.h b/libraries/ecore/src/lib/ecore_config/ecore_config_util.h
deleted file mode 100644
index 5bee9d6..0000000
--- a/libraries/ecore/src/lib/ecore_config/ecore_config_util.h
+++ /dev/null
@@ -1,14 +0,0 @@
1#define TIMER_STOP 0
2#define TIMER_CONT 1
3
4typedef struct _estring
5{
6 char *str;
7 int alloc, used;
8} estring;
9
10estring *estring_new(int size);
11char *estring_disown(estring * e);
12int estring_appendf(estring * e, const char *fmt, ...);
13
14int esprintf(char **result, const char *fmt, ...);