X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Flibvlc.h;h=06385dd2637065ad784e59c3b80fe1c2de49d4b6;hb=c3a591ae44437c1f36a981a43b1bc3295a27d6d1;hp=d13309be390df131b543739f88bd3ca63ff5ebcc;hpb=689dd889dee2ea43e8a7cb64ccec0b923a8a60bd;p=vlc diff --git a/src/libvlc.h b/src/libvlc.h index d13309be39..06385dd263 100644 --- a/src/libvlc.h +++ b/src/libvlc.h @@ -31,6 +31,26 @@ extern const struct hotkey libvlc_hotkeys[]; extern const size_t libvlc_hotkeys_size; +/* + * OS-specific initialization + */ +void system_Init ( libvlc_int_t *, int *, const char *[] ); +void system_Configure ( libvlc_int_t *, int *, const char *[] ); +void system_End ( libvlc_int_t * ); + +#if defined( SYS_BEOS ) +/* Nothing at the moment, create beos_specific.h when needed */ +#elif defined( __APPLE__ ) +/* Nothing at the moment, create darwin_specific.h when needed */ +#elif defined( WIN32 ) || defined( UNDER_CE ) +VLC_EXPORT( const char * , system_VLCPath, (void)); +#else +# define system_Init( a, b, c ) (void)0 +# define system_Configure( a, b, c ) (void)0 +# define system_End( a ) (void)0 +#endif + + /* * Threads subsystem */ @@ -117,6 +137,11 @@ struct vlc_object_internals_t vlc_bool_t b_attached; }; +#define ZOOM_SECTION N_("Zoom") +#define ZOOM_QUARTER_KEY_TEXT N_("1:4 Quarter") +#define ZOOM_HALF_KEY_TEXT N_("1:2 Half") +#define ZOOM_ORIGINAL_KEY_TEXT N_("1:1 Original") +#define ZOOM_DOUBLE_KEY_TEXT N_("2:1 Double") static inline vlc_object_internals_t *vlc_internals( vlc_object_t *obj ) { @@ -177,4 +202,9 @@ struct module_config_t extern module_config_t libvlc_config[]; extern const size_t libvlc_config_count; +/* + * Variables stuff + */ +void var_OptionParse (vlc_object_t *, const char *); + #endif