~videolan/vlc/old-trunk

« back to all changes in this revision

Viewing changes to include/vlc_common.h

  • Committer: dionoea
  • Date: 2006-09-24 22:01:28 UTC
  • Revision ID: vcs-imports@canonical.com-20060924220128-b4976d682fbfa4ac
Some more (mostly) untested stuff:
 * Secondary queue items now have a b_fetch_art flag
 * You can use the playlist_AskForArtEnqueue function to ask for art from an interface. This will enqueue at the begining of the secondary queue
 * other stuff which i don't remember :)
 * (fix issues with previous (and unrelated) DIR_SEP commit)

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 * Collection of useful common types and macros definitions
4
4
 *****************************************************************************
5
5
 * Copyright (C) 1998-2005 the VideoLAN team
6
 
 * $Id: vlc_common.h 16831 2006-09-24 15:20:49Z zorglub $
 
6
 * $Id: vlc_common.h 16840 2006-09-24 22:01:28Z dionoea $
7
7
 *
8
8
 * Authors: Samuel Hocevar <sam@via.ecp.fr>
9
9
 *          Vincent Seguin <seguin@via.ecp.fr>
237
237
typedef struct services_discovery_sys_t services_discovery_sys_t;
238
238
typedef struct playlist_add_t playlist_add_t;
239
239
typedef struct playlist_preparse_t playlist_preparse_t;
 
240
typedef struct playlist_secondary_preparse_t playlist_secondary_preparse_t;
240
241
 
241
242
/* Modules */
242
243
typedef struct module_bank_t module_bank_t;
1280
1281
#endif
1281
1282
 
1282
1283
#if defined( WIN32 ) || defined( UNDER_CE )
 
1284
#   define DIR_SEP_CHAR '\\'
1283
1285
#   define DIR_SEP "\\"
1284
1286
#else
 
1287
#   define DIR_SEP_CHAR '/'
1285
1288
#   define DIR_SEP "/"
1286
1289
#endif