Subversion Repositories SvarDOS

Rev

Rev 364 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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