main.h
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * main.h: access to all program variables
  3.  * Declaration and extern access to global program object.
  4.  *****************************************************************************
  5.  * Copyright (C) 1999, 2000, 2001, 2002 VideoLAN
  6.  * $Id: main.h 8911 2004-10-04 16:03:30Z gbazin $
  7.  *
  8.  * Authors: Vincent Seguin <seguin@via.ecp.fr>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  23.  *****************************************************************************/
  24. /*****************************************************************************
  25.  * libvlc_t (global variable)
  26.  *****************************************************************************
  27.  * This structure has an unique instance, statically allocated in main and
  28.  * never accessed from the outside. It store once-initialized data such as
  29.  * the CPU capabilities or the global lock.
  30.  *****************************************************************************/
  31. struct libvlc_t
  32. {
  33.     VLC_COMMON_MEMBERS
  34.     /* Initialization boolean */
  35.     vlc_bool_t             b_ready;
  36.     /* CPU extensions */
  37.     uint32_t               i_cpu;
  38.     /* Generic settings */
  39.     int                    i_verbose;                       /* info messages */
  40.     vlc_bool_t             b_color;                       /* color messages? */
  41.     /* Object structure data */
  42.     int                    i_counter;                      /* object counter */
  43.     int                    i_objects;              /* Attached objects count */
  44.     vlc_object_t **        pp_objects;               /* Array of all objects */
  45.     /* The message bank */
  46.     msg_bank_t             msg_bank;
  47.     /* The module bank */
  48.     module_bank_t *        p_module_bank;
  49.     /* Arch-specific variables */
  50. #if !defined( WIN32 )
  51.     vlc_bool_t             b_daemon;
  52. #endif 
  53. #if defined( SYS_BEOS )
  54.     vlc_object_t *         p_appthread;
  55.     char *                 psz_vlcpath;
  56. #elif defined( SYS_DARWIN )
  57.     char *                 psz_vlcpath;
  58. #elif defined( WIN32 ) && !defined( UNDER_CE )
  59.     SIGNALOBJECTANDWAIT    SignalObjectAndWait;
  60.     vlc_bool_t             b_fast_mutex;
  61.     int                    i_win9x_cv;
  62.     char *                 psz_vlcpath;
  63. #elif defined( UNDER_CE )
  64.     char *                 psz_vlcpath;
  65. #endif
  66. };
  67. /*****************************************************************************
  68.  * vlc_t, p_vlc
  69.  *****************************************************************************
  70.  * This structure is a LibVLC instance.
  71.  *****************************************************************************/
  72. struct vlc_t
  73. {
  74.     VLC_COMMON_MEMBERS
  75.     /* Global properties */
  76.     int                    i_argc;           /* command line arguments count */
  77.     char **                ppsz_argv;              /* command line arguments */
  78.     char *                 psz_homedir;             /* user's home directory */
  79.     char *                 psz_configfile;        /* location of config file */
  80.     /* Fast memcpy plugin used */
  81.     module_t *             p_memcpy_module;
  82. #if defined( UNDER_CE )
  83.     void* ( __cdecl *pf_memcpy ) ( void *, const void *, size_t );
  84.     void* ( __cdecl *pf_memset ) ( void *, int, size_t );
  85. #else
  86.     void* ( *pf_memcpy ) ( void *, const void *, size_t );
  87.     void* ( *pf_memset ) ( void *, int, size_t );
  88. #endif
  89.     /* Shared data - these structures are accessed directly from p_vlc by
  90.      * several modules */
  91.     /* Locks */
  92.     vlc_mutex_t            config_lock;          /* lock for the config file */
  93. #ifdef SYS_DARWIN
  94.     vlc_mutex_t            quicktime_lock;          /* QT is not thread safe on OSX */
  95. #endif
  96.     /* Structure storing the action name / key associations */
  97.     struct hotkey
  98.     {
  99.         const char *psz_action;
  100.         int i_action;
  101.         int i_key;
  102.     } *p_hotkeys;
  103. };