diff options
Diffstat (limited to 'src/xine-utils/xine_check.h')
-rw-r--r-- | src/xine-utils/xine_check.h | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/src/xine-utils/xine_check.h b/src/xine-utils/xine_check.h index 836d2d3d4..3038044e2 100644 --- a/src/xine-utils/xine_check.h +++ b/src/xine-utils/xine_check.h @@ -1,8 +1,13 @@ #ifndef XINE_CHECK_H #define XINE_CHECK_H -/* Start checking xine setup here */ -int xine_health_check(void); +/* + * 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); @@ -16,13 +21,13 @@ int xine_health_check_mtrr(void); #endif /* ARCH_X86 */ /* health_check CDROM */ -int xine_health_check_cdrom(void); +int xine_health_check_cdrom(char* cdrom_dev); /* health_check DVDROM */ -int xine_health_check_dvdrom(void); +int xine_health_check_dvdrom(char* dvd_dev); -/* health_check DMA settings */ -int xine_health_check_dma(void); +/* health_check DMA settings of DVD drive*/ +int xine_health_check_dma(char* dvd_dev); /* health_check X */ int xine_health_check_x(void); |