From: Laurent Aimar Date: Wed, 28 Jan 2009 20:09:11 +0000 (+0100) Subject: Document a bit option flags. X-Git-Tag: 1.0.0-pre1~974 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=3f8d4e6150ccd774ed1d0300f3281568ddc91080;p=vlc Document a bit option flags. --- diff --git a/include/vlc_input_item.h b/include/vlc_input_item.h index fa97b061ce..fa90d21fba 100644 --- a/include/vlc_input_item.h +++ b/include/vlc_input_item.h @@ -118,7 +118,12 @@ VLC_EXPORT( void, input_item_AddSubItem, ( input_item_t *p_parent, input_item_t */ enum input_item_option_e { + /* Allow VLC to trust the given option. + * By default options are untrusted */ VLC_INPUT_OPTION_TRUSTED = 0x2, + + /* Change the value associated to an option if already present, otherwise + * add the option */ VLC_INPUT_OPTION_UNIQUE = 0x100, };