home *** CD-ROM | disk | FTP | other *** search
/ Chip: Linux Special / CorelLinux_CHIP.iso / live / usr / include / apt-pkg / cdromutl.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-06-21  |  631 b   |  24 lines

  1. // -*- mode: cpp; mode: fold -*-
  2. // Description                                /*{{{*/
  3. // $Id: cdromutl.h,v 1.2 1999/06/05 03:54:29 jgg Exp $
  4. /* ######################################################################
  5.  
  6.    CDROM Utilities - Some functions to manipulate CDROM mounts.
  7.    
  8.    ##################################################################### */
  9.                                     /*}}}*/
  10. #ifndef PKGLIB_CDROMUTL_H
  11. #define PKGLIB_ACQUIRE_METHOD_H
  12.  
  13. #include <string>
  14.  
  15. #ifdef __GNUG__
  16. #pragma interface "apt-pkg/cdromutl.h"
  17. #endif 
  18.  
  19. bool MountCdrom(string Path);
  20. bool UnmountCdrom(string Path);
  21. bool IdentCdrom(string CD,string &Res,unsigned int Version = 2);
  22.  
  23. #endif
  24.