diff options
author | jstebbins <[email protected]> | 2015-05-06 16:04:08 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2015-05-06 16:04:08 +0000 |
commit | 9c0e97cc2c369e0c720441d182bbde20210742f4 (patch) | |
tree | 8b8f74ed24d0f617c9980d9043ebd53c33c531f3 /libhb/lang.h | |
parent | 81bcee10d2ad88f44c0f7791f2dd8da4ee2c1b76 (diff) |
libhb,cli: add preset management to libhb, use it in cli
This results in custom preset support in the CLI and additional
command line options to fully support all preset keys.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7158 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/lang.h')
-rw-r--r-- | libhb/lang.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/lang.h b/libhb/lang.h index 21aab70af..7e7b82bd5 100644 --- a/libhb/lang.h +++ b/libhb/lang.h @@ -24,7 +24,7 @@ typedef struct iso639_lang_t extern "C" { #endif /* find language, match any of names in lang struct */ -iso639_lang_t * lang_lookup( const char * str ); +const iso639_lang_t * lang_lookup( const char * str ); /* find language associated with ISO-639-1 language code */ iso639_lang_t * lang_for_code( int code ); |