Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
54 |
mv_fox |
1 |
/*
|
|
|
2 |
* CD-ROM detection routines
|
|
|
3 |
* Copyright (C) 2016 Mateusz Viste
|
|
|
4 |
*/
|
|
|
5 |
|
|
|
6 |
#ifndef CDROM_H_SENTINEL
|
|
|
7 |
#define CDROM_H_SENTINEL
|
|
|
8 |
|
|
|
9 |
/* returns 1 if drive drv is a valid CDROM, zero if not, negative if no MSCDEX (0=A:, etc) */
|
|
|
10 |
int cdrom_drivecheck(int drv);
|
|
|
11 |
|
|
|
12 |
/* returns the identifier of the first CDROM drive (0=A:, etc), or a negative value on error */
|
|
|
13 |
int cdrom_findfirst(void);
|
|
|
14 |
|
|
|
15 |
#endif
|