]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/cdromutl.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: cdromutl.h,v 1.3 2001/05/07 05:06:52 jgg Exp $
4 /* ######################################################################
6 CDROM Utilities - Some functions to manipulate CDROM mounts.
8 ##################################################################### */
10 #ifndef PKGLIB_CDROMUTL_H
11 #define PKGLIB_CDROMUTL_H
17 // mount cdrom, DeviceName (e.g. /dev/sr0) is optional
18 bool MountCdrom(string Path
, string DeviceName
="");
19 bool UnmountCdrom(string Path
);
20 bool IdentCdrom(string CD
,string
&Res
,unsigned int Version
= 2);
21 bool IsMounted(string
&Path
);
22 string
FindMountPointForDevice(const char *device
);