Elementary: Comment out quicklaunch defines and add them to ignores.

This commit is contained in:
Kai Huuhko 2013-04-14 19:39:41 +00:00
parent b598049b36
commit 259c78d8b2
2 changed files with 11 additions and 10 deletions

View File

@ -13,6 +13,7 @@ c_exclude_list = [
"elm_route", # Useless API?
"elm_glview", # Is there an OpenGL API for Python that can be used with this?
"evas_gl_", # ditto
"elm_quicklaunch", # Is quicklaunch relevant for us?
]
c_excludes = "|".join(c_exclude_list)

View File

@ -93,16 +93,16 @@ cdef extern from "Elementary.h":
void elm_exit()
# General - Quicklaunch (XXX: Only used by macros?)
void elm_quicklaunch_init(int argc, char **argv)
void elm_quicklaunch_sub_init(int argc, char **argv)
void elm_quicklaunch_sub_shutdown()
void elm_quicklaunch_shutdown()
void elm_quicklaunch_seed()
Eina_Bool elm_quicklaunch_prepare(int argc, char **argv)
Eina_Bool elm_quicklaunch_fork(int argc, char **argv, char *cwd, void (*postfork_func) (void *data), void *postfork_data)
void elm_quicklaunch_cleanup()
int elm_quicklaunch_fallback(int argc, char **argv)
char *elm_quicklaunch_exe_path_get(char *exe)
# void elm_quicklaunch_init(int argc, char **argv)
# void elm_quicklaunch_sub_init(int argc, char **argv)
# void elm_quicklaunch_sub_shutdown()
# void elm_quicklaunch_shutdown()
# void elm_quicklaunch_seed()
# Eina_Bool elm_quicklaunch_prepare(int argc, char **argv)
# Eina_Bool elm_quicklaunch_fork(int argc, char **argv, char *cwd, void (*postfork_func) (void *data), void *postfork_data)
# void elm_quicklaunch_cleanup()
# int elm_quicklaunch_fallback(int argc, char **argv)
# char *elm_quicklaunch_exe_path_get(char *exe)
# General - Policy
Eina_Bool elm_policy_set(unsigned int policy, int value)