home *** CD-ROM | disk | FTP | other *** search
- /*
- ┌────────────────────────────────────────────────────────────────────────────┐
- │int24err.c │
- │This routine , used in conjunction with insint24.c is called after any dos │
- │i/o operation and returns an errorcode which avoids the │
- │Abort, Retry, Ignore stuff. │
- │ │
- │ (C) JazSoft Software by Jack A. Zucker (301) 794-5950 │
- └────────────────────────────────────────────────────────────────────────────┘
- */
-
-
- int24err()
- {
- extern int far int24error;
- int w;
-
- w = int24error;
-
- int24error = 0; /* reset error to zero */
-
- return(w);
- }