diff options
author | jstebbins <[email protected]> | 2015-04-19 14:38:38 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-04-19 14:38:38 +0000 |
commit | 76308dc3563db85da5a3daae74014637423cb249 (patch) | |
tree | c53612b2947e5eef6e896cbac8d6cb2340a99b72 /libhb/ports.h | |
parent | 2b0b91800b4e3461f0b9c1d8c3070968b1b9fe90 (diff) |
ports: add functions for looking up user config directory
These will be used by the CLI for loading custom user presets.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7105 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/ports.h')
-rw-r--r-- | libhb/ports.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libhb/ports.h b/libhb/ports.h index 649d3995f..42cdede6a 100644 --- a/libhb/ports.h +++ b/libhb/ports.h @@ -100,6 +100,11 @@ void hb_get_temporary_directory( char path[512] ); void hb_get_tempory_filename( hb_handle_t *, char name[1024], char * fmt, ... ); +#if defined( SYS_DARWIN ) +void osx_get_user_config_directory( char path[512] ); +#endif +void hb_get_user_config_directory( char path[512] ); +void hb_get_user_config_filename( char name[1024], char *fmt, ... ); /************************************************************************ * Threads ***********************************************************************/ |