cdromutl.h 611 B

1234567891011121314151617181920212223
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. // $Id: cdromutl.h,v 1.3 2001/05/07 05:06:52 jgg Exp $
  4. /* ######################################################################
  5. CDROM Utilities - Some functions to manipulate CDROM mounts.
  6. ##################################################################### */
  7. /*}}}*/
  8. #ifndef PKGLIB_CDROMUTL_H
  9. #define PKGLIB_CDROMUTL_H
  10. #include <string>
  11. using std::string;
  12. bool MountCdrom(string Path);
  13. bool UnmountCdrom(string Path);
  14. bool IdentCdrom(string CD,string &Res,unsigned int Version = 2);
  15. bool IsMounted(string &Path);
  16. #endif