]> git.sesse.net Git - vlc/blob - include/vlc/vlc.h
* ALL: changed "struct foo_s" into "struct foo_t" to make greppers happy.
[vlc] / include / vlc / vlc.h
1 /*****************************************************************************
2  * vlc.h: global header for vlc
3  *****************************************************************************
4  * Copyright (C) 1998, 1999, 2000 VideoLAN
5  * $Id: vlc.h,v 1.6 2002/07/20 18:01:42 sam Exp $
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  * 
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
20  *****************************************************************************/
21
22 #ifndef _VLC_VLC_H
23 #define _VLC_VLC_H 1
24
25 # ifdef __cplusplus
26 extern "C" {
27 # endif
28
29 /*****************************************************************************
30  * Our custom types
31  *****************************************************************************/
32 #define VLC_DECLARE_STRUCT( name ) struct name; typedef struct name name;
33
34 VLC_DECLARE_STRUCT(vlc_t)
35 VLC_DECLARE_STRUCT(vlc_object_t)
36
37 typedef signed int vlc_error_t;
38 typedef int        vlc_bool_t;
39 typedef int        vlc_status_t;
40
41 /*****************************************************************************
42  * Error values
43  *****************************************************************************/
44 #define VLC_SUCCESS         -0                                   /* No error */
45 #define VLC_EGENERIC        -1                              /* Generic error */
46 #define VLC_ENOMEM          -2                          /* Not enough memory */
47 #define VLC_ESTATUS         -3                             /* Invalid status */
48 #define VLC_EEXIT         -255                             /* Program exited */
49
50 /*****************************************************************************
51  * Booleans
52  *****************************************************************************/
53 #define VLC_FALSE 0
54 #define VLC_TRUE  1
55
56 /*****************************************************************************
57  * Main structure status
58  *****************************************************************************/
59 #define VLC_STATUS_NONE     0x00000000
60 #define VLC_STATUS_CREATED  0x02020202
61 #define VLC_STATUS_STOPPED  0x12121212
62 #define VLC_STATUS_RUNNING  0x42424242
63
64 /*****************************************************************************
65  * Playlist
66  *****************************************************************************/
67
68 /* Used by playlist_Add */
69 #define PLAYLIST_INSERT      0x0001
70 #define PLAYLIST_REPLACE     0x0002
71 #define PLAYLIST_APPEND      0x0004
72 #define PLAYLIST_GO          0x0008
73
74 #define PLAYLIST_END           -666
75
76 /* Playlist parsing mode */
77 #define PLAYLIST_REPEAT_CURRENT   0             /* Keep playing current item */
78 #define PLAYLIST_FORWARD          1              /* Parse playlist until end */
79 #define PLAYLIST_BACKWARD        -1                       /* Parse backwards */
80 #define PLAYLIST_FORWARD_LOOP     2               /* Parse playlist and loop */
81 #define PLAYLIST_BACKWARD_LOOP   -2              /* Parse backwards and loop */
82 #define PLAYLIST_RANDOM           3                          /* Shuffle play */
83 #define PLAYLIST_REVERSE_RANDOM  -3                  /* Reverse shuffle play */
84
85 /* Playlist commands */
86 #define PLAYLIST_PLAY   1                         /* Starts playing. No arg. */
87 #define PLAYLIST_PAUSE  2                 /* Toggles playlist pause. No arg. */
88 #define PLAYLIST_STOP   3                          /* Stops playing. No arg. */
89 #define PLAYLIST_SKIP   4                          /* Skip X items and play. */
90 #define PLAYLIST_GOTO   5                                  /* Goto Xth item. */
91 #define PLAYLIST_MODE   6                          /* Set playlist mode. ??? */
92
93 /*****************************************************************************
94  * Required internal headers
95  *****************************************************************************/
96 #if defined( __VLC__ )
97 #   include "defs.h"
98 #   include "config.h"
99 #   include "modules_inner.h"
100 #   include "vlc_common.h"
101 #   include "os_specific.h"
102 #   include "vlc_messages.h"
103 #   include "mtime.h"
104 #   include "modules.h"
105 #   include "main.h"
106 #   include "configuration.h"
107 #   include "vlc_objects.h"
108 #endif
109
110 /*****************************************************************************
111  * Exported libvlc API
112  *****************************************************************************/
113 vlc_status_t    vlc_status       ( void );
114
115 vlc_error_t     vlc_create       ( void );
116 vlc_error_t     vlc_init         ( int, char *[] );
117 vlc_error_t     vlc_run          ( void );
118 vlc_error_t     vlc_stop         ( void );
119 vlc_error_t     vlc_end          ( void );
120 vlc_error_t     vlc_destroy      ( void );
121
122 vlc_error_t     vlc_add_intf     ( const char *, vlc_bool_t );
123 vlc_error_t     vlc_add_target   ( const char *, int, int );
124
125 /*****************************************************************************
126  * Exported libvlc reentrant API
127  *****************************************************************************/
128 vlc_status_t    vlc_status_r     ( vlc_t * );
129
130 vlc_t *         vlc_create_r     ( void );
131 vlc_error_t     vlc_init_r       ( vlc_t *, int, char *[] );
132 vlc_error_t     vlc_run_r        ( vlc_t * );
133 vlc_error_t     vlc_stop_r       ( vlc_t * );
134 vlc_error_t     vlc_end_r        ( vlc_t * );
135 vlc_error_t     vlc_destroy_r    ( vlc_t * );
136
137 vlc_error_t     vlc_add_intf_r   ( vlc_t *, const char *, vlc_bool_t );
138 vlc_error_t     vlc_add_target_r ( vlc_t *, const char *, int, int );
139
140 # ifdef __cplusplus
141 }
142 # endif
143
144 #endif /* <vlc/vlc.h> */