home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat20.c */
- /*------------------------------------------------------------------*/
- #include <stdio.h>
- #include <conio.h>
- #include <bios.h>
-
- void main()
- {
- unsigned status;
-
- printf("╜╨╢}▒╥⌐╬├÷│¼▒z¬║ªL¬φ╛≈ÑH½K└╦┤·¿Σ¬¼║A. ╜╨½÷Ñ⌠ñ@┴Σ─~─≥\n");
- getch();
- status = _bios_printer(_PRINTER_STATUS, 0, 0);
- if (status & 0x01)
- printf("ªL¬φ╛≈«╔╢í╡▓º⌠.\n");
- if (status & 0x08)
- printf("I/O ┐∙╗~.\n");
- if (status & 0x10)
- printf("ªL¬φ╛≈ñw┐∩⌐w.\n");
- if (status & 0x20)
- printf("¿Sª│»╚▒iñF.\n");
- if (status & 0x40)
- printf("░eÑX.\n");
- if (status & 0x80)
- printf("ªL¬φ╛≈Ñ╝│B⌐≤ªú╕Lñº¬¼║A.\n");
- }