summaryrefslogtreecommitdiff
path: root/src/xine-utils/xine_check.h
blob: 75eda102d30f9fd5ed8ee71e69d0a04b6985af22 (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
#ifndef XINE_CHECK_H
#define XINE_CHECK_H
#include <stdio.h>

#include <xine.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)
 */

/* Get Kernel information */
xine_health_check_t* _x_health_check_kernel(xine_health_check_t*);

/* health_check MTRR */
xine_health_check_t* _x_health_check_mtrr(xine_health_check_t*);

/* health_check CDROM */
xine_health_check_t* _x_health_check_cdrom(xine_health_check_t*);

/* health_check DVDROM */
xine_health_check_t* _x_health_check_dvdrom(xine_health_check_t*);

/* health_check DMA settings of DVD drive*/
xine_health_check_t* _x_health_check_dma(xine_health_check_t*);

/* health_check X */
xine_health_check_t* _x_health_check_x(xine_health_check_t*);

/* health_check Xv extension */
xine_health_check_t* _x_health_check_xv(xine_health_check_t*);

#endif