home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 July / Chip_1998-07_cd.bin / ctenari / Soban / VYPLATA / ERROR.H < prev    next >
C/C++ Source or Header  |  1996-02-05  |  580b  |  21 lines

  1. /***********************************************************************
  2.  * Program pro obsluhu dosovskych chyb                                 *
  3.  * (c) 1996 Soban Petr                                                 *
  4.  ***********************************************************************/
  5.  
  6. #ifndef _ERROR_H
  7. #define _ERROR_H
  8.  
  9. #define IGNORE  0
  10. #define RETRY   1
  11. #define ABORT   2
  12. #define FAIL    3
  13.  
  14. #include <conio.h>
  15. #include <dos.h>
  16.  
  17.  void okno_ERROR(int z_x, int z_y);
  18.  int chyba_ERROR(int errval, int ax, int bp, int si);
  19.  int ERROR_A_R_I(void);
  20.  
  21. #endif