1 /*****************************************************************************
2 * vlc_common.h: common definitions
3 * Collection of useful common types and macros definitions
4 *****************************************************************************
5 * Copyright (C) 1998-2011 VLC authors and VideoLAN
7 * Authors: Samuel Hocevar <sam@via.ecp.fr>
8 * Vincent Seguin <seguin@via.ecp.fr>
9 * Gildas Bazin <gbazin@videolan.org>
10 * RĂ©mi Denis-Courmont
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU Lesser General Public License as published by
14 * the Free Software Foundation; either version 2.1 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU Lesser General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public License
23 * along with this program; if not, write to the Free Software Foundation,
24 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
25 *****************************************************************************/
29 * This file is a collection of common definitions and types
33 # define VLC_COMMON_H 1
35 /*****************************************************************************
36 * Required vlc headers
37 *****************************************************************************/
38 #include "vlc_config.h"
40 /*****************************************************************************
41 * Required system headers
42 *****************************************************************************/
55 /*****************************************************************************
56 * Compilers definitions
57 *****************************************************************************/
58 /* Helper for GCC version checks */
60 # define VLC_GCC_VERSION(maj,min) \
61 ((__GNUC__ > (maj)) || (__GNUC__ == (maj) && __GNUC_MINOR__ >= (min)))
63 # define VLC_GCC_VERSION(maj,min) (0)
66 /* Try to fix format strings for all versions of mingw and mingw64 */
67 #if defined( _WIN32 ) && defined( __USE_MINGW_ANSI_STDIO )
78 #define snprintf __mingw_snprintf
79 #define vsnprintf __mingw_vsnprintf
80 #define swprintf _snwprintf
83 /* Function attributes for compiler warnings */
85 # define VLC_DEPRECATED __attribute__((deprecated))
86 # if VLC_GCC_VERSION(6,0)
87 # define VLC_DEPRECATED_ENUM __attribute__((deprecated))
89 # define VLC_DEPRECATED_ENUM
92 # if defined( _WIN32 )
93 # define VLC_FORMAT(x,y) __attribute__ ((format(gnu_printf,x,y)))
95 # define VLC_FORMAT(x,y) __attribute__ ((format(printf,x,y)))
97 # define VLC_FORMAT_ARG(x) __attribute__ ((format_arg(x)))
98 # define VLC_MALLOC __attribute__ ((malloc))
99 # define VLC_USED __attribute__ ((warn_unused_result))
102 # define VLC_DEPRECATED
103 # define VLC_DEPRECATED_ENUM
104 # define VLC_FORMAT(x,y)
105 # define VLC_FORMAT_ARG(x)
111 /* Branch prediction */
113 # define likely(p) __builtin_expect(!!(p), 1)
114 # define unlikely(p) __builtin_expect(!!(p), 0)
115 # define unreachable() __builtin_unreachable()
117 # define likely(p) (!!(p))
118 # define unlikely(p) (!!(p))
119 # define unreachable() ((void)0)
122 #define vlc_assert_unreachable() (assert(!"unreachable"), unreachable())
126 # define VLC_EXTERN extern "C"
131 #if defined (_WIN32) && defined (DLL_EXPORT)
132 # define VLC_EXPORT __declspec(dllexport)
133 #elif defined (__GNUC__)
134 # define VLC_EXPORT __attribute__((visibility("default")))
139 #define VLC_API VLC_EXTERN VLC_EXPORT
142 /*****************************************************************************
143 * Basic types definitions
144 *****************************************************************************/
146 * High precision date or time interval
148 * Store a high precision date or time interval. The maximum precision is the
149 * microsecond, and a 64 bits integer is used to avoid overflows (maximum
150 * time interval is then 292271 years, which should be long enough for any
151 * video). Dates are stored as microseconds since a common date (usually the
152 * epoch). Note that date and time intervals can be manipulated using regular
153 * arithmetic operators, and that no special functions are required.
155 typedef int64_t mtime_t
;
158 * The vlc_fourcc_t type.
160 * See http://www.webartz.com/fourcc/ for a very detailed list.
162 typedef uint32_t vlc_fourcc_t
;
164 #ifdef WORDS_BIGENDIAN
165 # define VLC_FOURCC( a, b, c, d ) \
166 ( ((uint32_t)d) | ( ((uint32_t)c) << 8 ) \
167 | ( ((uint32_t)b) << 16 ) | ( ((uint32_t)a) << 24 ) )
168 # define VLC_TWOCC( a, b ) \
169 ( (uint16_t)(b) | ( (uint16_t)(a) << 8 ) )
172 # define VLC_FOURCC( a, b, c, d ) \
173 ( ((uint32_t)a) | ( ((uint32_t)b) << 8 ) \
174 | ( ((uint32_t)c) << 16 ) | ( ((uint32_t)d) << 24 ) )
175 # define VLC_TWOCC( a, b ) \
176 ( (uint16_t)(a) | ( (uint16_t)(b) << 8 ) )
181 * Translate a vlc_fourcc into its string representation. This function
182 * assumes there is enough room in psz_fourcc to store 4 characters in.
184 * \param fcc a vlc_fourcc_t
185 * \param psz_fourcc string to store string representation of vlc_fourcc in
187 static inline void vlc_fourcc_to_char( vlc_fourcc_t fcc
, char *psz_fourcc
)
189 memcpy( psz_fourcc
, &fcc
, 4 );
192 /*****************************************************************************
193 * Classes declaration
194 *****************************************************************************/
197 typedef struct vlc_list_t vlc_list_t
;
198 typedef struct vlc_object_t vlc_object_t
;
199 typedef struct libvlc_int_t libvlc_int_t
;
200 typedef struct date_t date_t
;
204 typedef struct playlist_t playlist_t
;
205 typedef struct playlist_item_t playlist_item_t
;
206 typedef struct services_discovery_t services_discovery_t
;
207 typedef struct services_discovery_sys_t services_discovery_sys_t
;
208 typedef struct vlc_renderer_discovery_t vlc_renderer_discovery_t
;
209 typedef struct vlc_renderer_item_t vlc_renderer_item_t
;
212 typedef struct module_t module_t
;
213 typedef struct module_config_t module_config_t
;
215 typedef struct config_category_t config_category_t
;
218 typedef struct input_thread_t input_thread_t
;
219 typedef struct input_item_t input_item_t
;
220 typedef struct input_item_node_t input_item_node_t
;
221 typedef struct access_sys_t access_sys_t
;
222 typedef struct stream_t stream_t
;
223 typedef struct stream_sys_t stream_sys_t
;
224 typedef struct demux_t demux_t
;
225 typedef struct demux_sys_t demux_sys_t
;
226 typedef struct es_out_t es_out_t
;
227 typedef struct es_out_id_t es_out_id_t
;
228 typedef struct es_out_sys_t es_out_sys_t
;
229 typedef struct seekpoint_t seekpoint_t
;
230 typedef struct info_t info_t
;
231 typedef struct info_category_t info_category_t
;
232 typedef struct input_attachment_t input_attachment_t
;
235 typedef struct audio_format_t audio_format_t
;
236 typedef struct video_format_t video_format_t
;
237 typedef struct subs_format_t subs_format_t
;
238 typedef struct es_format_t es_format_t
;
239 typedef struct video_palette_t video_palette_t
;
242 typedef struct audio_output audio_output_t
;
243 typedef struct aout_sys_t aout_sys_t
;
244 typedef audio_format_t audio_sample_format_t
;
247 typedef struct vout_thread_t vout_thread_t
;
248 typedef struct vlc_viewpoint_t vlc_viewpoint_t
;
250 typedef video_format_t video_frame_format_t
;
251 typedef struct picture_t picture_t
;
252 typedef struct picture_sys_t picture_sys_t
;
255 typedef struct spu_t spu_t
;
256 typedef struct subpicture_t subpicture_t
;
257 typedef struct subpicture_region_t subpicture_region_t
;
259 typedef struct image_handler_t image_handler_t
;
262 typedef struct sout_instance_t sout_instance_t
;
264 typedef struct sout_input_t sout_input_t
;
265 typedef struct sout_packetizer_input_t sout_packetizer_input_t
;
267 typedef struct sout_access_out_t sout_access_out_t
;
268 typedef struct sout_access_out_sys_t sout_access_out_sys_t
;
270 typedef struct sout_mux_t sout_mux_t
;
271 typedef struct sout_mux_sys_t sout_mux_sys_t
;
273 typedef struct sout_stream_t sout_stream_t
;
274 typedef struct sout_stream_sys_t sout_stream_sys_t
;
276 typedef struct config_chain_t config_chain_t
;
277 typedef struct session_descriptor_t session_descriptor_t
;
280 typedef struct decoder_t decoder_t
;
281 typedef struct decoder_sys_t decoder_sys_t
;
282 typedef struct decoder_synchro_t decoder_synchro_t
;
285 typedef struct encoder_t encoder_t
;
286 typedef struct encoder_sys_t encoder_sys_t
;
289 typedef struct filter_t filter_t
;
290 typedef struct filter_sys_t filter_sys_t
;
293 typedef struct vlc_url_t vlc_url_t
;
296 typedef struct iso639_lang_t iso639_lang_t
;
299 typedef struct block_t block_t
;
300 typedef struct block_fifo_t block_fifo_t
;
303 typedef struct md5_s md5_t
;
306 typedef struct xml_t xml_t
;
307 typedef struct xml_sys_t xml_sys_t
;
308 typedef struct xml_reader_t xml_reader_t
;
309 typedef struct xml_reader_sys_t xml_reader_sys_t
;
312 typedef struct vod_t vod_t
;
313 typedef struct vod_sys_t vod_sys_t
;
314 typedef struct vod_media_t vod_media_t
;
317 typedef struct vlm_t vlm_t
;
318 typedef struct vlm_message_t vlm_message_t
;
321 typedef struct vlc_meta_t vlc_meta_t
;
322 typedef struct input_stats_t input_stats_t
;
323 typedef struct addon_entry_t addon_entry_t
;
326 typedef struct update_t update_t
;
329 * VLC value structure
339 struct { int32_t x
; int32_t y
; } coords
;
350 vlc_value_t
*p_values
;
353 /*****************************************************************************
354 * Error values (shouldn't be exposed)
355 *****************************************************************************/
356 #define VLC_SUCCESS (-0) /**< No error */
357 #define VLC_EGENERIC (-1) /**< Unspecified error */
358 #define VLC_ENOMEM (-2) /**< Not enough memory */
359 #define VLC_ETIMEOUT (-3) /**< Timeout */
360 #define VLC_ENOMOD (-4) /**< Module not found */
361 #define VLC_ENOOBJ (-5) /**< Object not found */
362 #define VLC_ENOVAR (-6) /**< Variable not found */
363 #define VLC_EBADVAR (-7) /**< Bad variable value */
364 #define VLC_ENOITEM (-8) /**< Item not found */
366 /*****************************************************************************
367 * Variable callbacks: called when the value is modified
368 *****************************************************************************/
369 typedef int ( * vlc_callback_t
) ( vlc_object_t
*, /* variable's object */
370 char const *, /* variable name */
371 vlc_value_t
, /* old value */
372 vlc_value_t
, /* new value */
373 void * ); /* callback data */
375 /*****************************************************************************
376 * List callbacks: called when elements are added/removed from the list
377 *****************************************************************************/
378 typedef int ( * vlc_list_callback_t
) ( vlc_object_t
*, /* variable's object */
379 char const *, /* variable name */
380 int, /* VLC_VAR_* action */
381 vlc_value_t
*, /* new/deleted value */
382 void *); /* callback data */
384 /*****************************************************************************
385 * OS-specific headers and thread types
386 *****************************************************************************/
387 #if defined( _WIN32 )
390 # define PATH_MAX MAX_PATH
392 # include <windows.h>
396 #include <sys/syslimits.h>
397 #include <AvailabilityMacros.h>
401 # define OS2EMX_PLAIN_CHAR
404 # include <os2safe.h>
408 #include "vlc_mtime.h"
409 #include "vlc_threads.h"
411 /*****************************************************************************
412 * Macros and inline functions
413 *****************************************************************************/
415 /* __MAX and __MIN: self explanatory */
417 # define __MAX(a, b) ( ((a) > (b)) ? (a) : (b) )
420 # define __MIN(a, b) ( ((a) < (b)) ? (a) : (b) )
423 /* clip v in [min, max] */
424 #define VLC_CLIP(v, min, max) __MIN(__MAX((v), (min)), (max))
427 static inline int64_t GCD ( int64_t a
, int64_t b
)
438 /* function imported from libavutil/common.h */
440 static inline uint8_t clip_uint8_vlc( int32_t a
)
442 if( a
&(~255) ) return (-a
)>>31;
446 /** Count leading zeroes */
448 static inline unsigned (clz
)(unsigned x
)
451 return __builtin_clz (x
);
453 unsigned i
= sizeof (x
) * 8;
464 #define clz8( x ) (clz(x) - ((sizeof(unsigned) - sizeof (uint8_t)) * 8))
465 #define clz16( x ) (clz(x) - ((sizeof(unsigned) - sizeof (uint16_t)) * 8))
466 /* XXX: this assumes that int is 32-bits or more */
467 #define clz32( x ) (clz(x) - ((sizeof(unsigned) - sizeof (uint32_t)) * 8))
469 /** Count trailing zeroes */
471 static inline unsigned (ctz
)(unsigned x
)
474 return __builtin_ctz (x
);
476 unsigned i
= sizeof (x
) * 8;
489 static inline unsigned (popcount
)(unsigned x
)
492 return __builtin_popcount (x
);
504 /** Bit weight of long long */
506 static inline int (popcountll
)(unsigned long long x
)
509 return __builtin_popcountll(x
);
522 static inline unsigned (parity
)(unsigned x
)
525 return __builtin_parity (x
);
527 for (unsigned i
= 4 * sizeof (x
); i
> 0; i
/= 2)
533 /** Byte swap (16 bits) */
535 static inline uint16_t (bswap16
)(uint16_t x
)
537 return (x
<< 8) | (x
>> 8);
540 /** Byte swap (32 bits) */
542 static inline uint32_t (bswap32
)(uint32_t x
)
544 #if defined (__GNUC__) || defined(__clang__)
545 return __builtin_bswap32 (x
);
547 return ((x
& 0x000000FF) << 24)
548 | ((x
& 0x0000FF00) << 8)
549 | ((x
& 0x00FF0000) >> 8)
550 | ((x
& 0xFF000000) >> 24);
554 /** Byte swap (64 bits) */
556 static inline uint64_t (bswap64
)(uint64_t x
)
558 #if defined (__GNUC__) || defined(__clang__)
559 return __builtin_bswap64 (x
);
560 #elif !defined (__cplusplus)
561 return ((x
& 0x00000000000000FF) << 56)
562 | ((x
& 0x000000000000FF00) << 40)
563 | ((x
& 0x0000000000FF0000) << 24)
564 | ((x
& 0x00000000FF000000) << 8)
565 | ((x
& 0x000000FF00000000) >> 8)
566 | ((x
& 0x0000FF0000000000) >> 24)
567 | ((x
& 0x00FF000000000000) >> 40)
568 | ((x
& 0xFF00000000000000) >> 56);
570 return ((x
& 0x00000000000000FFULL
) << 56)
571 | ((x
& 0x000000000000FF00ULL
) << 40)
572 | ((x
& 0x0000000000FF0000ULL
) << 24)
573 | ((x
& 0x00000000FF000000ULL
) << 8)
574 | ((x
& 0x000000FF00000000ULL
) >> 8)
575 | ((x
& 0x0000FF0000000000ULL
) >> 24)
576 | ((x
& 0x00FF000000000000ULL
) >> 40)
577 | ((x
& 0xFF00000000000000ULL
) >> 56);
581 /* Integer overflow */
582 static inline bool uadd_overflow(unsigned a
, unsigned b
, unsigned *res
)
584 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
585 return __builtin_uadd_overflow(a
, b
, res
);
592 static inline bool uaddl_overflow(unsigned long a
, unsigned long b
,
595 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
596 return __builtin_uaddl_overflow(a
, b
, res
);
603 static inline bool uaddll_overflow(unsigned long long a
, unsigned long long b
,
604 unsigned long long *res
)
606 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
607 return __builtin_uaddll_overflow(a
, b
, res
);
615 # define add_overflow(a,b,r) \
617 unsigned: uadd_overflow(a, b, (unsigned *)(r)), \
618 unsigned long: uaddl_overflow(a, b, (unsigned long *)(r)), \
619 unsigned long long: uaddll_overflow(a, b, (unsigned long long *)(r)))
621 static inline bool add_overflow(unsigned a
, unsigned b
, unsigned *res
)
623 return uadd_overflow(a
, b
, res
);
626 static inline bool add_overflow(unsigned long a
, unsigned long b
,
629 return uaddl_overflow(a
, b
, res
);
632 static inline bool add_overflow(unsigned long long a
, unsigned long long b
,
633 unsigned long long *res
)
635 return uaddll_overflow(a
, b
, res
);
639 #if !(VLC_GCC_VERSION(5,0) || defined(__clang__))
643 static inline bool umul_overflow(unsigned a
, unsigned b
, unsigned *res
)
645 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
646 return __builtin_umul_overflow(a
, b
, res
);
649 return b
> 0 && a
> (UINT_MAX
/ b
);
653 static inline bool umull_overflow(unsigned long a
, unsigned long b
,
656 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
657 return __builtin_umull_overflow(a
, b
, res
);
660 return b
> 0 && a
> (ULONG_MAX
/ b
);
664 static inline bool umulll_overflow(unsigned long long a
, unsigned long long b
,
665 unsigned long long *res
)
667 #if VLC_GCC_VERSION(5,0) || defined(__clang__)
668 return __builtin_umulll_overflow(a
, b
, res
);
671 return b
> 0 && a
> (ULLONG_MAX
/ b
);
676 #define mul_overflow(a,b,r) \
678 unsigned: umul_overflow(a, b, (unsigned *)(r)), \
679 unsigned long: umull_overflow(a, b, (unsigned long *)(r)), \
680 unsigned long long: umulll_overflow(a, b, (unsigned long long *)(r)))
682 static inline bool mul_overflow(unsigned a
, unsigned b
, unsigned *res
)
684 return umul_overflow(a
, b
, res
);
687 static inline bool mul_overflow(unsigned long a
, unsigned long b
,
690 return umull_overflow(a
, b
, res
);
693 static inline bool mul_overflow(unsigned long long a
, unsigned long long b
,
694 unsigned long long *res
)
696 return umulll_overflow(a
, b
, res
);
700 /* Free and set set the variable to NULL */
701 #define FREENULL(a) do { free( a ); a = NULL; } while(0)
703 #define EMPTY_STR(str) (!str || !*str)
705 VLC_API
char const * vlc_error( int ) VLC_USED
;
707 #include <vlc_arrays.h>
709 /* MSB (big endian)/LSB (little endian) conversions - network order is always
710 * MSB, and should be used for both network communications and files. */
712 #ifdef WORDS_BIGENDIAN
713 # define hton16(i) ((uint16_t)(i))
714 # define hton32(i) ((uint32_t)(i))
715 # define hton64(i) ((uint64_t)(i))
717 # define hton16(i) bswap16(i)
718 # define hton32(i) bswap32(i)
719 # define hton64(i) bswap64(i)
721 #define ntoh16(i) hton16(i)
722 #define ntoh32(i) hton32(i)
723 #define ntoh64(i) hton64(i)
725 /** Reads 16 bits in network byte order */
727 static inline uint16_t U16_AT (const void *p
)
731 memcpy (&x
, p
, sizeof (x
));
735 /** Reads 32 bits in network byte order */
737 static inline uint32_t U32_AT (const void *p
)
741 memcpy (&x
, p
, sizeof (x
));
745 /** Reads 64 bits in network byte order */
747 static inline uint64_t U64_AT (const void *p
)
751 memcpy (&x
, p
, sizeof (x
));
755 #define GetWBE(p) U16_AT(p)
756 #define GetDWBE(p) U32_AT(p)
757 #define GetQWBE(p) U64_AT(p)
759 /** Reads 16 bits in little-endian order */
761 static inline uint16_t GetWLE (const void *p
)
765 memcpy (&x
, p
, sizeof (x
));
766 #ifdef WORDS_BIGENDIAN
772 /** Reads 32 bits in little-endian order */
774 static inline uint32_t GetDWLE (const void *p
)
778 memcpy (&x
, p
, sizeof (x
));
779 #ifdef WORDS_BIGENDIAN
785 /** Reads 64 bits in little-endian order */
787 static inline uint64_t GetQWLE (const void *p
)
791 memcpy (&x
, p
, sizeof (x
));
792 #ifdef WORDS_BIGENDIAN
798 /** Writes 16 bits in network byte order */
799 static inline void SetWBE (void *p
, uint16_t w
)
802 memcpy (p
, &w
, sizeof (w
));
805 /** Writes 32 bits in network byte order */
806 static inline void SetDWBE (void *p
, uint32_t dw
)
809 memcpy (p
, &dw
, sizeof (dw
));
812 /** Writes 64 bits in network byte order */
813 static inline void SetQWBE (void *p
, uint64_t qw
)
816 memcpy (p
, &qw
, sizeof (qw
));
819 /** Writes 16 bits in little endian order */
820 static inline void SetWLE (void *p
, uint16_t w
)
822 #ifdef WORDS_BIGENDIAN
825 memcpy (p
, &w
, sizeof (w
));
828 /** Writes 32 bits in little endian order */
829 static inline void SetDWLE (void *p
, uint32_t dw
)
831 #ifdef WORDS_BIGENDIAN
834 memcpy (p
, &dw
, sizeof (dw
));
837 /** Writes 64 bits in little endian order */
838 static inline void SetQWLE (void *p
, uint64_t qw
)
840 #ifdef WORDS_BIGENDIAN
843 memcpy (p
, &qw
, sizeof (qw
));
847 #define VLC_UNUSED(x) (void)(x)
849 /* Stuff defined in src/extras/libc.c */
852 /* several type definitions */
853 # if defined( __MINGW32__ )
854 # if !defined( _OFF_T_ )
855 typedef long long _off_t
;
856 typedef _off_t off_t
;
862 # define off_t long long
867 # define O_NONBLOCK 0
877 VLC_API
bool vlc_ureduce( unsigned *, unsigned *, uint64_t, uint64_t, uint64_t );
879 #define container_of(ptr, type, member) \
880 ((type *)(((char *)(ptr)) - offsetof(type, member)))
883 static inline void *vlc_alloc(size_t count
, size_t size
)
885 return mul_overflow(count
, size
, &size
) ? NULL
: malloc(size
);
888 /*****************************************************************************
890 *****************************************************************************/
891 VLC_API
char *vlc_gettext( const char *msgid
) VLC_FORMAT_ARG(1);
892 VLC_API
char *vlc_ngettext( const char *s
, const char *p
, unsigned long n
) VLC_FORMAT_ARG(1) VLC_FORMAT_ARG(2);
894 #define vlc_pgettext( ctx, id ) \
895 vlc_pgettext_aux( ctx "\004" id, id )
898 static inline const char *vlc_pgettext_aux( const char *ctx
, const char *id
)
900 const char *tr
= vlc_gettext( ctx
);
901 return (tr
== ctx
) ? id
: tr
;
904 /*****************************************************************************
905 * Loosy memory allocation functions. Do not use in new code.
906 *****************************************************************************/
907 static inline void *xmalloc(size_t len
)
909 void *ptr
= malloc(len
);
910 if (unlikely(ptr
== NULL
&& len
> 0))
915 static inline void *xrealloc(void *ptr
, size_t len
)
917 void *nptr
= realloc(ptr
, len
);
918 if (unlikely(nptr
== NULL
&& len
> 0))
923 static inline void *xcalloc(size_t n
, size_t size
)
925 void *ptr
= calloc(n
, size
);
926 if (unlikely(ptr
== NULL
&& (n
> 0 || size
> 0)))
931 static inline char *xstrdup (const char *str
)
933 char *ptr
= strdup (str
);
934 if (unlikely(ptr
== NULL
))
939 /*****************************************************************************
941 *****************************************************************************/
942 VLC_API
const char * VLC_CompileBy( void ) VLC_USED
;
943 VLC_API
const char * VLC_CompileHost( void ) VLC_USED
;
944 VLC_API
const char * VLC_Compiler( void ) VLC_USED
;
946 /*****************************************************************************
947 * Additional vlc stuff
948 *****************************************************************************/
949 #include "vlc_messages.h"
950 #include "vlc_objects.h"
951 #include "vlc_variables.h"
952 #include "vlc_configuration.h"
954 #if defined( _WIN32 ) || defined( __OS2__ )
955 # define DIR_SEP_CHAR '\\'
956 # define DIR_SEP "\\"
957 # define PATH_SEP_CHAR ';'
958 # define PATH_SEP ";"
960 # define DIR_SEP_CHAR '/'
962 # define PATH_SEP_CHAR ':'
963 # define PATH_SEP ":"
966 #define LICENSE_MSG \
967 _("This program comes with NO WARRANTY, to the extent permitted by " \
968 "law.\nYou may redistribute it under the terms of the GNU General " \
969 "Public License;\nsee the file named COPYING for details.\n" \
970 "Written by the VideoLAN team; see the AUTHORS file.\n")
972 #endif /* !VLC_COMMON_H */