Changeset f7428b1 in buchla-68k for include/errdefs.h


Ignore:
Timestamp:
07/10/2017 01:26:59 AM (7 years ago)
Author:
Thomas Lopatic <thomas@…>
Branches:
master
Children:
5fa506d
Parents:
c3aee8a
Message:

Started to rework include files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • include/errdefs.h

    rc3aee8a rf7428b1  
    66*/
    77
    8 #define ERR01   -1L     /* All purpose general error code */
    9 #define ERR02   -2L     /* Drive not ready */
    10 #define ERR03   -3L     /* Unknown command */
    11 #define ERR04   -4L     /* CRC error */
    12 #define ERR05   -5L     /* Invalid request */
    13 #define ERR06   -6L     /* Seek error */
    14 #define ERR07   -7L     /* Unknown media */
    15 #define ERR08   -8L     /* Sector not found */
    16 #define ERR09   -9L     /* End of media or out of paper */
    17 #define ERR10   -10L    /* Write fault */
    18 #define ERR11   -11L    /* Read fault */
    19 #define ERR12   -12L    /* General mishap */
    20 #define ERR13   -13L    /* Write protected */
    21 #define ERR14   -14L    /* Media change */
    22 #define ERR15   -15L    /* Unknown device */
    23 #define ERR16   -16L    /* Bad sectors */
    24 #define ERR17   -17L    /* Insert disk */
     8#pragma once
     9
     10#define ERR01   -1      /* All purpose general error code */
     11#define ERR02   -2      /* Drive not ready */
     12#define ERR03   -3      /* Unknown command */
     13#define ERR04   -4      /* CRC error */
     14#define ERR05   -5      /* Invalid request */
     15#define ERR06   -6      /* Seek error */
     16#define ERR07   -7      /* Unknown media */
     17#define ERR08   -8      /* Sector not found */
     18#define ERR09   -9      /* End of media or out of paper */
     19#define ERR10   -10     /* Write fault */
     20#define ERR11   -11     /* Read fault */
     21#define ERR12   -12     /* General mishap */
     22#define ERR13   -13     /* Write protected */
     23#define ERR14   -14     /* Media change */
     24#define ERR15   -15     /* Unknown device */
     25#define ERR16   -16     /* Bad sectors */
     26#define ERR17   -17     /* Insert disk */
Note: See TracChangeset for help on using the changeset viewer.