Subversion Repositories SvarDOS

Rev

Rev 364 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 364 Rev 397
1
/*
1
/*
2
 * translates a DOS extended error into a human string
2
 * translates a DOS extended error into a human string
3
 * (as defined by INT 21/AH=59h/BX=0000h)
3
 * (as defined by INT 21/AH=59h/BX=0000h)
4
 */
4
 */
5
 
5
 
6
#ifndef DOSERR_H
6
#ifndef DOSERR_H
7
#define DOSERR_H
7
#define DOSERR_H
8
 
8
 
9
const char *doserr(unsigned short err);
9
const char *doserr(unsigned short err);
10
 
10
 
11
#endif
11
#endif
12
 
12