Hi all, tiny int17 printer fix: I noticed that the value returned is actually different. -- Andreas Mohr Stauferstr. 6, D-71272 Renningen, Germany
Determining best CVS host... Using CVSROOT :pserver:cvs@cvs.winehq.com:/home/wine Index: dlls/winedos/int17.c =================================================================== RCS file: /home/wine/wine/dlls/winedos/int17.c,v retrieving revision 1.3 diff -u -r1.3 int17.c --- dlls/winedos/int17.c 31 Aug 2002 18:47:00 -0000 1.3 +++ dlls/winedos/int17.c 24 Oct 2002 10:33:09 -0000 @@ -38,7 +38,7 @@ { case 0x01: /* PRINTER - INITIALIZE */ FIXME("Initialize Printer - Not Supported\n"); - SET_AH( context, 0 ); /* time out */ + SET_AH( context, 0x30 ); /* selected | out of paper */ break; case 0x02: /* PRINTER - GET STATUS */ FIXME("Get Printer Status - Not Supported\n");