Merge branch 'master' of github.com:VincentWei/minigui

This commit is contained in:
VincentWei
2018-05-18 19:56:54 +08:00
3 changed files with 21 additions and 3 deletions
+1 -3
View File
@@ -1958,7 +1958,7 @@ dnl Check for FreeType1 library
ft2)
dnl Check for FreeType2 library
AC_CHECK_LIB(freetype, FT_Library_Version,
DEP_LIBS="$DEP_LIBS -lfreetype -lz -lpng12",
DEP_LIBS="$DEP_LIBS -lfreetype",
use_ttf_lib="none")
;;
esac
@@ -2041,7 +2041,6 @@ case "$use_ttf_lib" in
FT1_INC_DIR="-I$with_ft1_includes"
fi
DEP_LIBS="$DEP_LIBS -lttf"
AC_SUBST(FT1_INC_DIR)
;;
ft2)
@@ -2058,7 +2057,6 @@ case "$use_ttf_lib" in
FT2_INC_DIR="-I$with_ft2_includes"
fi
DEP_LIBS="$DEP_LIBS -lfreetype"
AC_SUBST(FT2_INC_DIR)
;;
esac
+15
View File
@@ -4732,6 +4732,19 @@ enum emResReturn {
RES_RET_INUSED //the res or object is in used, cannot be unloaded
};
/**
* \fn const char* GetResPath (void)
* \brief Get the currrent user's resource path.
*
* \param path The path which store the resources. It can be an absolute path or relative path.
*
* \return the user's resource path; NULL if have not been set.
*
* \sa SetResPath
*
**/
MG_EXPORT const char* GetResPath (void);
/**
* \fn int SetResPath (const char* path);
* \brief Set user's resource path into the search paths of resource manager.
@@ -4742,6 +4755,8 @@ enum emResReturn {
*
* \return RES_RET_OK for success or error code.
*
* \sa GetResPath
*
**/
MG_EXPORT int SetResPath (const char* path);
+5
View File
@@ -498,6 +498,11 @@ int AddResPath(const char* paths)
#endif
const char* GetResPath (void)
{
return usr_res_path;
}
int SetResPath(const char* path)
{
if(path == NULL) {