diff options
Diffstat (limited to 'discover/cdrom.h')
-rw-r--r-- | discover/cdrom.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/discover/cdrom.h b/discover/cdrom.h new file mode 100644 index 0000000..2e9de06 --- /dev/null +++ b/discover/cdrom.h @@ -0,0 +1,9 @@ +#ifndef CDROM_H +#define CDROM_H + +void cdrom_init(const char *devpath); +void cdrom_eject(const char *devpath); +bool cdrom_media_present(const char *devpath); + +#endif /* CDROM_H */ + |