diff options
author | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2010-11-22 15:21:32 +0000 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2010-11-22 15:21:32 +0000 |
commit | 6f2213cb25c6ec810bfeeab106e4fcbfe3922792 (patch) | |
tree | f9013370a7fa06d8bc35416ba7bd8f43fa9843c5 /src/bin/e_exec.c | |
parent | c5642870c3329cb6d17ed8ca89b74cf92066aaf4 (diff) | |
download | enlightenment-6f2213cb25c6ec810bfeeab106e4fcbfe3922792.tar.gz enlightenment-6f2213cb25c6ec810bfeeab106e4fcbfe3922792.tar.xz enlightenment-6f2213cb25c6ec810bfeeab106e4fcbfe3922792.zip |
convert init/shutdown to EINTERN, move some to _update().
Do not abuse the concept of e_*_init(), make them call-once and those
that needed multiple call are renamed to e_*_update(). To make sure
convert them to EINTERN so the symbols are not exported.
Actually I guess too much is exported as EAPI while they should be
EINTERN, but that would require manual investigation, while this patch
was basically created with sed + grep.
SVN revision: 54795
Diffstat (limited to 'src/bin/e_exec.c')
-rw-r--r-- | src/bin/e_exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/e_exec.c b/src/bin/e_exec.c index e20029c6f..3a5328520 100644 --- a/src/bin/e_exec.c +++ b/src/bin/e_exec.c @@ -63,7 +63,7 @@ static Ecore_Event_Handler *_e_exec_exit_handler = NULL; static Ecore_Event_Handler *_e_exec_border_add_handler = NULL; /* externally accessible functions */ -EAPI int +EINTERN int e_exec_init(void) { e_exec_instances = eina_hash_string_superfast_new(NULL); @@ -77,7 +77,7 @@ e_exec_init(void) return 1; } -EAPI int +EINTERN int e_exec_shutdown(void) { char buf[256]; |