cdromutl.h 606 B

123456789101112131415161718192021222324
  1. // -*- mode: cpp; mode: fold -*-
  2. // Description /*{{{*/
  3. // $Id: cdromutl.h,v 1.1 1998/11/29 01:19:27 jgg Exp $
  4. /* ######################################################################
  5. CDROM Utilities - Some functions to manipulate CDROM mounts.
  6. ##################################################################### */
  7. /*}}}*/
  8. #ifndef PKGLIB_CDROMUTL_H
  9. #define PKGLIB_ACQUIRE_METHOD_H
  10. #include <string>
  11. #ifdef __GNUG__
  12. #pragma interface "apt-pkg/cdromutl.h"
  13. #endif
  14. bool MountCdrom(string Path);
  15. bool UnmountCdrom(string Path);
  16. bool IdentCdrom(string CD,string &Res);
  17. #endif