1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-03 01:31:53 +02:00

Document a bit option flags.

This commit is contained in:
Laurent Aimar 2009-01-28 21:09:11 +01:00
parent 5f62f401a2
commit 3f8d4e6150

View File

@ -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,
};