From 049baecfc474c4129106c19b92bf518061a46acf Mon Sep 17 00:00:00 2001 From: Niels Martin Hansen Date: Tue, 28 Jul 2009 13:34:31 +0000 Subject: [PATCH] Fill in missing docs from r3304. Originally committed to SVN as r3306. --- aegisub/src/libosxutil/bundledirs.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/aegisub/src/libosxutil/bundledirs.c b/aegisub/src/libosxutil/bundledirs.c index d0d4ef908..fc86b8a48 100644 --- a/aegisub/src/libosxutil/bundledirs.c +++ b/aegisub/src/libosxutil/bundledirs.c @@ -39,9 +39,17 @@ #include "libosxutil.h" -/** @todo document me. */ +/** @brief Type of functions that return a URL from a bundle. + * @internal + */ typedef CFURLRef (*GetURLFunc)(CFBundleRef); +/** @brief Generic implementation to retrieve pathnames inside a bundle. + * + * @internal Provide a generic implementation for most of the logic + * in path-retrieval, since what differs for the various functions is + * only the call used to retrieve the actual path inside the bundle. + */ static char * GetDir(GetURLFunc GetURL) { CFBundleRef bundle;