summaryrefslogtreecommitdiff
path: root/src/xine-utils/xine_check.h
blob: 3038044e2dac683aad043c71f83002cd4f6d51df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#ifndef XINE_CHECK_H
#define XINE_CHECK_H

/*
 * Start checking xine setup here
 *
 * cdrom_dev = Name of the device link for the cdrom drive (e.g. /dev/cdrom)
 * dvd_dev = Name of the device link for the dvd drive (e.g. /dev/dvd)
 */
int xine_health_check(char* cdrom_dev, char* dvd_dev);

/* Get OS information */
int xine_health_check_os(void);

/* Get Kernel information */
int xine_health_check_kernel(void);

#if ARCH_X86
/* health_check MTRR */
int xine_health_check_mtrr(void);
#endif /* ARCH_X86 */

/* health_check CDROM */
int xine_health_check_cdrom(char* cdrom_dev);

/* health_check DVDROM */
int xine_health_check_dvdrom(char* dvd_dev);

/* health_check DMA settings of DVD drive*/
int xine_health_check_dma(char* dvd_dev);

/* health_check X */
int xine_health_check_x(void);

/* health_check Xv extension */
int xine_health_check_xv(void);

#endif