From 12c38ee1c9c519fa5f4a0cb626902b49af561858 Mon Sep 17 00:00:00 2001 From: Carsten Haitzler Date: Thu, 29 Mar 2012 08:43:11 +0000 Subject: [PATCH] pur RAPI's on the .c file funcs.. TOO! so we can see which are api calls and whats internal! SVN revision: 69726 --- legacy/ecore/src/lib/ecore/ecore_getopt.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/legacy/ecore/src/lib/ecore/ecore_getopt.c b/legacy/ecore/src/lib/ecore/ecore_getopt.c index cd681897c3..4c1152ae64 100644 --- a/legacy/ecore/src/lib/ecore/ecore_getopt.c +++ b/legacy/ecore/src/lib/ecore/ecore_getopt.c @@ -671,7 +671,7 @@ _ecore_getopt_help_options(FILE *fp, * * Message will be print to stderr. */ -void +EAPI void ecore_getopt_help(FILE *fp, const Ecore_Getopt *parser) { @@ -1675,7 +1675,7 @@ _ecore_getopt_parse_find_long_other(const Ecore_Getopt *parser, * * @return EINA_TRUE if there are duplicates, EINA_FALSE otherwise. */ -Eina_Bool +EAPI Eina_Bool ecore_getopt_parser_has_duplicates(const Ecore_Getopt *parser) { const Ecore_Getopt_Desc *desc = parser->descs; @@ -1776,7 +1776,7 @@ _ecore_getopt_find_help(const Ecore_Getopt *parser) * * @return index of first non-option parameter or -1 on error. */ -int +EAPI int ecore_getopt_parse(const Ecore_Getopt *parser, Ecore_Getopt_Value *values, int argc, @@ -1846,7 +1846,7 @@ error: * @param list pointer to list to be freed. * @return always NULL, so you can easily make your list head NULL. */ -Eina_List * +EAPI Eina_List * ecore_getopt_list_free(Eina_List *list) { void *data; @@ -1865,7 +1865,7 @@ ecore_getopt_list_free(Eina_List *list) * * @c callback_data value is ignored, you can safely use @c NULL. */ -Eina_Bool +EAPI Eina_Bool ecore_getopt_callback_geometry_parse(const Ecore_Getopt *parser __UNUSED__, const Ecore_Getopt_Desc *desc __UNUSED__, const char *str, @@ -1893,7 +1893,7 @@ ecore_getopt_callback_geometry_parse(const Ecore_Getopt *parser __UNUSED__, * * @c callback_data value is ignored, you can safely use @c NULL. */ -Eina_Bool +EAPI Eina_Bool ecore_getopt_callback_size_parse(const Ecore_Getopt *parser __UNUSED__, const Ecore_Getopt_Desc *desc __UNUSED__, const char *str,