Fill in missing docs from r3304.
Originally committed to SVN as r3306.
This commit is contained in:
parent
a1d04599e2
commit
049baecfc4
1 changed files with 9 additions and 1 deletions
|
@ -39,9 +39,17 @@
|
||||||
|
|
||||||
#include "libosxutil.h"
|
#include "libosxutil.h"
|
||||||
|
|
||||||
/** @todo document me. */
|
/** @brief Type of functions that return a URL from a bundle.
|
||||||
|
* @internal
|
||||||
|
*/
|
||||||
typedef CFURLRef (*GetURLFunc)(CFBundleRef);
|
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)
|
static char * GetDir(GetURLFunc GetURL)
|
||||||
{
|
{
|
||||||
CFBundleRef bundle;
|
CFBundleRef bundle;
|
||||||
|
|
Loading…
Reference in a new issue