home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 May / Chip_2000-05_cd2.bin / dosutils / ext2tool / src / e2err.h < prev    next >
C/C++ Source or Header  |  1995-04-19  |  682b  |  16 lines

  1. /***************************************************************************
  2.  * error codes for ext2 tools
  3.  *
  4.  * Copyright (C) 1995 Claus Tondering, ct@login.dknet.dk
  5.  * This file may be redistributed under the terms of the GNU Public License.
  6.  ***************************************************************************/
  7.  
  8.  
  9. #define E2E_NOCWD    2001        /* E2CWD environment not specified */
  10. #define E2E_BADCWD    2002        /* E2CWD environment has bad format */
  11. #define E2E_BADFS    2003        /* Disk does not contain an ext2 file system */
  12. #define E2E_BADPART    2004        /* Disk partitioning is corrupted */
  13. #define E2E_BADMEM    2005        /* Not enough memory */
  14.  
  15. extern void e2_err(char *,int);
  16.