elm_app.h: use addtogroup and make a separate doc for elm_app_info_set.

This commit is contained in:
Daniel Juyung Seo 2013-03-16 22:30:35 +09:00
parent 5a74e5a072
commit dbf44f699b
1 changed files with 14 additions and 4 deletions

View File

@ -5,6 +5,16 @@
* run time location of the software in question, so other data files
* such as images, sound files, executable utilities, libraries,
* modules and locale files can be found.
*/
/**
* @addtogroup App
* @{
*/
/**
* Re-locate the application somewhere else after compilation, if the developer
* wishes for easier distribution of pre-compiled binaries.
*
* @param mainfunc This is your application's main function name,
* whose binary's location is to be found. Providing @c NULL
@ -20,10 +30,6 @@
* help determine the prefix found was correct. Pass @c NULL if
* the check is not to be done.
*
* This function allows one to re-locate the application somewhere
* else after compilation, if the developer wishes for easier
* distribution of pre-compiled binaries.
*
* The prefix system is designed to locate where the given software is
* installed (under a common path prefix) at run time and then report
* specific locations of this prefix and common directories inside
@ -258,3 +264,7 @@ EAPI const char *elm_app_data_dir_get(void);
* @ingroup App
*/
EAPI const char *elm_app_locale_dir_get(void);
/**
* @}
*/