]> git.sesse.net Git - vlc/blob - src/interface/control.c
A tout kass�.
[vlc] / src / interface / control.c
1 /*******************************************************************************
2  * control.c: user control functions
3  * (c)1999 VideoLAN
4  *******************************************************************************
5  * Library of functions common to all threads, allowing access to various
6  * structures and settings. Interfaces should only use those functions
7  * to read or write informations from other threads.
8  *******************************************************************************/
9
10 /*******************************************************************************
11  * Preamble
12  *******************************************************************************/
13 #include "vlc.h"
14 /*??
15 #include <pthread.h>
16 #include <stdio.h>
17 #include <netinet/in.h>
18 #include <sys/soundcard.h>
19 #include <sys/uio.h>
20 #include <X11/Xlib.h> 
21 #include <X11/extensions/XShm.h>
22
23 #include "config.h"
24 #include "common.h"
25 #include "mtime.h"
26 #include "vlc_thread.h"
27
28 #include "input.h"
29 #include "input_vlan.h"
30
31 #include "audio_output.h"
32
33 #include "video.h"
34 #include "video_output.h"
35
36 #include "xconsole.h"
37 #include "interface.h"
38 #include "intf_msg.h"
39 #include "control.h"
40
41 #include "pgm_data.h"*/
42
43