home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat42.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <dos.h>
-
- void main()
- {
- FILE *fp;
- struct DOSERROR ErrInfo;
-
- fp = fopen("MYFILE.TXT","r");
- if(!fp)
- {
- perror("╡L¬k╢}▒╥└╔«╫¿╙┼¬¿·\n");
-
- dosexterr(&ErrInfo);
-
- printf("\n┬XÑR¬║ DOS ┐∙╗~░T«º:\n");
- printf("ExtError ----AX : %d\n",ErrInfo.exterror);
- printf("Class ----BH : %d\n",ErrInfo.class);
- printf("Action ----BL : %d\n",ErrInfo.action);
- printf("Error Locus----AX : %d\n",ErrInfo.locus);
- }
- else
- {
- printf("└╔«╫ñwª¿Ñ\\ªa╢}▒╥\n");
- /* ├÷│¼└╔«╫ */
- fclose(fp);
- }
- }