home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / misc / src / install / libfdisk / errlist.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-09-17  |  1.6 KB  |  39 lines

  1. /* array of all errmsgs */
  2. #define FDISK_NERR 30
  3. const int  fdisk_nerr=FDISK_NERR;
  4. char *fdisk_errlist[FDISK_NERR+1] = {
  5.                         "Success",                          /* 0*/
  6.             "User aborted",                     /* 1 */
  7.             "",                                 /* 2 */
  8.             "",                                 /* 3 */
  9.             "",                                 /* 4 */
  10.             "",                                 /* 5 */
  11.             "",                                 /* 6 */
  12.             "",                                 /* 7 */
  13.             "",                                 /* 8 */
  14.             "",                                 /* 9 */
  15.             "Bad numeric value",                /* 10 */
  16.             "Bad pointer",                      /* 11 */
  17.             "Bad magic",                        /* 12 */
  18.             "",                                 /* 13 */
  19.             "",                                 /* 14 */
  20.             "Two extended partitons",           /* 15 */
  21.             "Two logical in an EPT",            /* 16 */
  22.             "Partition table corrupt",          /* 17 */
  23.             "",                                 /* 18 */
  24.             "",                                 /* 19 */
  25.             "No free resources",                /* 20 */
  26.             "Could not allocate primary",       /* 21 */
  27.             "Could not allocate extended",      /* 22 */
  28.             "Resource currently in use",        /* 23 */
  29.             "No primary extended partition",    /* 24 */
  30.             "",                                 /* 25 */
  31.             "",                                 /* 26 */
  32.             "",                                 /* 27 */
  33.             "",                                 /* 28 */
  34.             "",                                 /* 29 */
  35.             "Failed to satisfy constraint(s)"   /* 30 */
  36. };
  37.             
  38.  
  39.