X11DRV_DIB_SetImageBits_RLE8: break image lines.
[wine] / msdos / int21.c
1 /*
2  * DOS interrupt 21h handler
3  */
4
5 #include "config.h"
6
7 #include <time.h>
8 #include <fcntl.h>
9 #include <errno.h>
10 #include <stdlib.h>
11 #ifdef HAVE_SYS_FILE_H
12 # include <sys/file.h>
13 #endif
14 #include <string.h>
15 #include <sys/stat.h>
16 #include <sys/time.h>
17 #include <sys/types.h>
18 #include <unistd.h>
19 #include <utime.h>
20 #include <ctype.h>
21 #include "windef.h"
22 #include "winbase.h"
23 #include "wingdi.h"
24 #include "winuser.h" /* SW_NORMAL */
25 #include "wine/winbase16.h"
26 #include "winerror.h"
27 #include "drive.h"
28 #include "file.h"
29 #include "heap.h"
30 #include "msdos.h"
31 #include "ldt.h"
32 #include "options.h"
33 #include "miscemu.h"
34 #include "task.h"
35 #include "dosexe.h" /* for the MZ_SUPPORTED define */
36 #include "debugtools.h"
37 #include "console.h"
38
39 DEFAULT_DEBUG_CHANNEL(int21)
40 #if defined(__svr4__) || defined(_SCO_DS)
41 /* SVR4 DOESNT do locking the same way must implement properly */
42 #define LOCK_EX 0
43 #define LOCK_SH  1
44 #define LOCK_NB  8
45 #endif
46
47
48 #define DOS_GET_DRIVE(reg) ((reg) ? (reg) - 1 : DRIVE_GetCurrentDrive())
49
50 /* Define the drive parameter block, as used by int21/1F
51  * and int21/32.  This table can be accessed through the
52  * global 'dpb' pointer, which points into the local dos
53  * heap.
54  */
55 struct DPB
56 {
57     BYTE drive_num;         /* 0=A, etc. */
58     BYTE unit_num;          /* Drive's unit number (?) */
59     WORD sector_size;       /* Sector size in bytes */
60     BYTE high_sector;       /* Highest sector in a cluster */
61     BYTE shift;             /* Shift count (?) */
62     WORD reserved;          /* Number of reserved sectors at start */
63     BYTE num_FAT;           /* Number of FATs */
64     WORD dir_entries;       /* Number of root dir entries */
65     WORD first_data;        /* First data sector */
66     WORD high_cluster;      /* Highest cluster number */
67     WORD sectors_in_FAT;    /* Number of sectors per FAT */
68     WORD start_dir;         /* Starting sector of first dir */
69     DWORD driver_head;      /* Address of device driver header (?) */
70     BYTE media_ID;          /* Media ID */
71     BYTE access_flag;       /* Prev. accessed flag (0=yes,0xFF=no) */
72     DWORD next;             /* Pointer to next DPB in list */
73     WORD free_search;       /* Free cluster search start */
74     WORD free_clusters;     /* Number of free clusters (0xFFFF=unknown) */
75 };
76
77 struct EDPB                     /* FAT32 extended Drive Parameter Block */
78 {                               /* from Ralf Brown's Interrupt List */
79         struct DPB dpb;         /* first 24 bytes = original DPB */
80
81         BYTE edpb_flags;        /* undocumented/unknown flags */
82         DWORD next_edpb;        /* pointer to next EDPB */
83         WORD free_cluster;      /* cluster to start search for free space on write, typically
84                                    the last cluster allocated */
85         WORD clusters_free;     /* number of free clusters on drive or FFFF = unknown */
86         WORD clusters_free_hi;  /* hiword of clusters_free */
87         WORD mirroring_flags;   /* mirroring flags: bit 7 set = do not mirror active FAT */
88                                 /* bits 0-3 = 0-based number of the active FAT */
89         WORD info_sector;       /* sector number of file system info sector, or FFFF for none */
90         WORD spare_boot_sector; /* sector number of backup boot sector, or FFFF for none */
91         DWORD first_cluster;    /* sector number of the first cluster */
92         DWORD max_cluster;      /* sector number of the last cluster */
93         DWORD fat_clusters;     /* number of clusters occupied by FAT */
94         DWORD root_cluster;     /* cluster number of start of root directory */
95         DWORD free_cluster2;    /* same as free_cluster: cluster at which to start
96                                    search for free space when writing */
97
98 };
99
100 WORD CodePage = 437;
101 DWORD dpbsegptr;
102
103 struct DosHeap {
104         BYTE InDosFlag;
105         BYTE mediaID;
106         BYTE biosdate[8];
107         struct DPB dpb;
108         BYTE DummyDBCSLeadTable[6];
109 };
110 static struct DosHeap *heap;
111 static WORD DosHeapHandle;
112
113 extern char TempDirectory[];
114
115 static BOOL INT21_CreateHeap(void)
116 {
117     if (!(DosHeapHandle = GlobalAlloc16(GMEM_FIXED,sizeof(struct DosHeap))))
118     {
119         WARN("Out of memory\n");
120         return FALSE;
121     }
122     heap = (struct DosHeap *) GlobalLock16(DosHeapHandle);
123     dpbsegptr = PTR_SEG_OFF_TO_SEGPTR(DosHeapHandle,(int)&heap->dpb-(int)heap);
124     heap->InDosFlag = 0;
125     strcpy(heap->biosdate, "01/01/80");
126     memset(heap->DummyDBCSLeadTable, 0, 6);
127     return TRUE;
128 }
129
130 static BYTE *GetCurrentDTA( CONTEXT86 *context )
131 {
132     TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
133
134     /* FIXME: This assumes DTA was set correctly! */
135     return (BYTE *)CTX_SEG_OFF_TO_LIN( context, SELECTOROF(pTask->dta), 
136                                                 (DWORD)OFFSETOF(pTask->dta) );
137 }
138
139
140 void CreateBPB(int drive, BYTE *data, BOOL16 limited)
141 /* limited == TRUE is used with INT 0x21/0x440d */
142 {
143         if (drive > 1) {
144                 setword(data, 512);
145                 data[2] = 2;
146                 setword(&data[3], 0);
147                 data[5] = 2;
148                 setword(&data[6], 240);
149                 setword(&data[8], 64000);
150                 data[0x0a] = 0xf8;
151                 setword(&data[0x0b], 40);
152                 setword(&data[0x0d], 56);
153                 setword(&data[0x0f], 2);
154                 setword(&data[0x11], 0);
155                 if (!limited) {
156                     setword(&data[0x1f], 800);
157                     data[0x21] = 5;
158                     setword(&data[0x22], 1);
159                 }
160         } else { /* 1.44mb */
161                 setword(data, 512);
162                 data[2] = 2;
163                 setword(&data[3], 0);
164                 data[5] = 2;
165                 setword(&data[6], 240);
166                 setword(&data[8], 2880);
167                 data[0x0a] = 0xf8;
168                 setword(&data[0x0b], 6);
169                 setword(&data[0x0d], 18);
170                 setword(&data[0x0f], 2);
171                 setword(&data[0x11], 0);
172                 if (!limited) {
173                     setword(&data[0x1f], 80);
174                     data[0x21] = 7;
175                     setword(&data[0x22], 2);
176                 }
177         }       
178 }
179
180 static int INT21_GetFreeDiskSpace( CONTEXT86 *context )
181 {
182     DWORD cluster_sectors, sector_bytes, free_clusters, total_clusters;
183     char root[] = "A:\\";
184
185     *root += DOS_GET_DRIVE( DL_reg(context) );
186     if (!GetDiskFreeSpaceA( root, &cluster_sectors, &sector_bytes,
187                               &free_clusters, &total_clusters )) return 0;
188     AX_reg(context) = cluster_sectors;
189     BX_reg(context) = free_clusters;
190     CX_reg(context) = sector_bytes;
191     DX_reg(context) = total_clusters;
192     return 1;
193 }
194
195 static int INT21_GetDriveAllocInfo( CONTEXT86 *context )
196 {
197     if (!INT21_GetFreeDiskSpace( context )) return 0;
198     if (!heap && !INT21_CreateHeap()) return 0;
199     heap->mediaID = 0xf0;
200     DS_reg(context) = DosHeapHandle;
201     BX_reg(context) = (int)&heap->mediaID - (int)heap;
202     return 1;
203 }
204
205 static int FillInDrivePB( int drive )
206 {
207         if(!DRIVE_IsValid(drive))
208         {
209             SetLastError( ERROR_INVALID_DRIVE );
210                         return 0;
211         }
212         else if (heap || INT21_CreateHeap())
213         {
214                 /* FIXME: I have no idea what a lot of this information should
215                  * say or whether it even really matters since we're not allowing
216                  * direct block access.  However, some programs seem to depend on
217                  * getting at least _something_ back from here.  The 'next' pointer
218                  * does worry me, though.  Should we have a complete table of
219                  * separate DPBs per drive?  Probably, but I'm lazy. :-)  -CH
220                  */
221                 heap->dpb.drive_num = heap->dpb.unit_num = drive; /*The same?*/
222                 heap->dpb.sector_size = 512;
223                 heap->dpb.high_sector = 1;
224                 heap->dpb.shift = drive < 2 ? 0 : 6; /*6 for HD, 0 for floppy*/
225                 heap->dpb.reserved = 0;
226                 heap->dpb.num_FAT = 1;
227                 heap->dpb.dir_entries = 2;
228                 heap->dpb.first_data = 2;
229                 heap->dpb.high_cluster = 64000;
230                 heap->dpb.sectors_in_FAT = 1;
231                 heap->dpb.start_dir = 1;
232                 heap->dpb.driver_head = 0;
233                 heap->dpb.media_ID = (drive > 1) ? 0xF8 : 0xF0;
234                 heap->dpb.access_flag = 0;
235                 heap->dpb.next = 0;
236                 heap->dpb.free_search = 0;
237                 heap->dpb.free_clusters = 0xFFFF;    /* unknown */
238                                 return 1;
239                 }       
240
241                 return 0;
242 }
243
244 static void GetDrivePB( CONTEXT86 *context, int drive )
245 {
246         if (FillInDrivePB( drive ))
247         {
248                 AL_reg(context) = 0x00;
249                 DS_reg(context) = SELECTOROF(dpbsegptr);
250                 BX_reg(context) = OFFSETOF(dpbsegptr);
251         }
252         else
253         {
254         AX_reg(context) = 0x00ff;
255         }
256 }
257
258
259 static void ioctlGetDeviceInfo( CONTEXT86 *context )
260 {
261     int curr_drive;
262     const DOS_DEVICE *dev;
263
264     TRACE("(%d)\n", BX_reg(context));
265     
266     RESET_CFLAG(context);
267
268     /* DOS device ? */
269     if ((dev = DOSFS_GetDeviceByHandle( FILE_GetHandle(BX_reg(context)) )))
270     {
271         DX_reg(context) = dev->flags;
272         return;
273     }
274
275     /* it seems to be a file */
276     curr_drive = DRIVE_GetCurrentDrive();
277     DX_reg(context) = 0x0140 + curr_drive + ((curr_drive > 1) ? 0x0800 : 0); 
278     /* no floppy */
279     /* bits 0-5 are current drive
280      * bit 6 - file has NOT been written..FIXME: correct?
281      * bit 8 - generate int24 if no diskspace on write/ read past end of file
282      * bit 11 - media not removable
283      * bit 14 - don't set file date/time on closing
284      * bit 15 - file is remote
285      */
286 }
287
288 static BOOL ioctlGenericBlkDevReq( CONTEXT86 *context )
289 {
290         BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
291         int drive = DOS_GET_DRIVE( BL_reg(context) );
292
293         if (!DRIVE_IsValid(drive))
294         {
295             SetLastError( ERROR_FILE_NOT_FOUND );
296             return TRUE;
297         }
298
299         if (CH_reg(context) != 0x08)
300         {
301             INT_BARF( context, 0x21 );
302             return FALSE;
303         }
304
305         switch (CL_reg(context)) 
306         {
307                 case 0x4a: /* lock logical volume */
308                         TRACE("lock logical volume (%d) level %d mode %d\n",drive,BH_reg(context),DX_reg(context));
309                         break;
310
311                 case 0x60: /* get device parameters */
312                            /* used by w4wgrp's winfile */
313                         memset(dataptr, 0, 0x20); /* DOS 6.22 uses 0x20 bytes */
314                         dataptr[0] = 0x04;
315                         dataptr[6] = 0; /* media type */
316                         if (drive > 1) 
317                         {
318                                 dataptr[1] = 0x05; /* fixed disk */
319                                 setword(&dataptr[2], 0x01); /* non removable */
320                                 setword(&dataptr[4], 0x300); /* # of cylinders */
321                         }
322                         else
323                         {
324                                 dataptr[1] = 0x07; /* block dev, floppy */
325                                 setword(&dataptr[2], 0x02); /* removable */
326                                 setword(&dataptr[4], 80); /* # of cylinders */
327                         }
328                         CreateBPB(drive, &dataptr[7], TRUE);
329                         RESET_CFLAG(context);
330                         break;
331
332                 case 0x41: /* write logical device track */
333                 case 0x61: /* read logical device track */
334                         {
335                                 BYTE drive = BL_reg(context) ?
336                                                 BL_reg(context) : DRIVE_GetCurrentDrive(); 
337                                 WORD head   = *(WORD *)dataptr+1;
338                                 WORD cyl    = *(WORD *)dataptr+3;
339                                 WORD sect   = *(WORD *)dataptr+5;
340                                 WORD nrsect = *(WORD *)dataptr+7;
341                                 BYTE *data  =  (BYTE *)dataptr+9;
342                                 int (*raw_func)(BYTE, DWORD, DWORD, BYTE *, BOOL);
343
344                                 raw_func = (CL_reg(context) == 0x41) ?
345                                                                 DRIVE_RawWrite : DRIVE_RawRead;
346
347                                 if (raw_func(drive, head*cyl*sect, nrsect, data, FALSE))
348                                         RESET_CFLAG(context);
349                                 else
350                                 {
351                                         AX_reg(context) = 0x1e; /* read fault */
352                                         SET_CFLAG(context);
353                                 }
354                         }
355                         break;
356                 case 0x66:/*  get disk serial number */
357                         {       
358                                 char    label[12],fsname[9],path[4];
359                                 DWORD   serial;
360
361                                 strcpy(path,"x:\\");path[0]=drive+'A';
362                                 GetVolumeInformationA(
363                                         path,label,12,&serial,NULL,NULL,fsname,9
364                                 );
365                                 *(WORD*)dataptr         = 0;
366                                 memcpy(dataptr+2,&serial,4);
367                                 memcpy(dataptr+6,label  ,11);
368                                 memcpy(dataptr+17,fsname,8);
369                         }
370                         break;
371
372                 case 0x6a:
373                         TRACE("logical volume %d unlocked.\n",drive);
374                         break;
375
376                 case 0x6f:
377                         memset(dataptr+1, '\0', dataptr[0]-1);
378                         dataptr[1] = dataptr[0]; 
379                         dataptr[2] = 0x07; /* protected mode driver; no eject; no notification */
380                         dataptr[3] = 0xFF; /* no physical drive */
381                         break;
382
383                 case 0x72:
384                         /* Trail on error implementation */
385                         AX_reg(context) = GetDriveType16(BL_reg(context)) == DRIVE_CANNOTDETERMINE ? 0x0f : 0x01;
386                         SET_CFLAG(context);     /* Seems to be set all the time */
387                         break;
388
389                 default:
390                         INT_BARF( context, 0x21 );
391         }
392         return FALSE;
393 }
394
395 static void INT21_ParseFileNameIntoFCB( CONTEXT86 *context )
396 {
397     char *filename =
398         CTX_SEG_OFF_TO_LIN(context, DS_reg(context), ESI_reg(context) );
399     char *fcb =
400         CTX_SEG_OFF_TO_LIN(context, ES_reg(context), EDI_reg(context) );
401     char *buffer, *s, *d;
402
403     AL_reg(context) = 0xff; /* failed */
404
405     TRACE("filename: '%s'\n", filename);
406
407     buffer = HeapAlloc( GetProcessHeap(), 0, strlen(filename) + 1);
408
409     s = filename;
410     d = buffer;
411     while (*s)
412     {
413         if ((*s != ' ') && (*s != '\r') && (*s != '\n'))
414             *d++ = *s++;
415         else
416             break;
417     }
418
419     *d = '\0';
420     DOSFS_ToDosFCBFormat(buffer, fcb + 1);
421     *fcb = 0;
422     TRACE("FCB: '%s'\n", ((CHAR *)fcb + 1));
423
424     HeapFree( GetProcessHeap(), 0, buffer);
425
426     AL_reg(context) =
427         ((strchr(filename, '*')) || (strchr(filename, '$'))) != 0;
428
429     /* point DS:SI to first unparsed character */
430     SI_reg(context) += (int)s - (int)filename;
431 }
432
433 static void INT21_GetSystemDate( CONTEXT86 *context )
434 {
435     SYSTEMTIME systime;
436     GetLocalTime( &systime );
437     CX_reg(context) = systime.wYear;
438     DX_reg(context) = (systime.wMonth << 8) | systime.wDay;
439     AX_reg(context) = systime.wDayOfWeek;
440 }
441
442 static void INT21_GetSystemTime( CONTEXT86 *context )
443 {
444     SYSTEMTIME systime;
445     GetLocalTime( &systime );
446     CX_reg(context) = (systime.wHour << 8) | systime.wMinute;
447     DX_reg(context) = (systime.wSecond << 8) | (systime.wMilliseconds / 10);
448 }
449
450 /* Many calls translate a drive argument like this:
451    drive number (00h = default, 01h = A:, etc)
452    */  
453 static char drivestring[]="default";
454
455 char *INT21_DriveName(int drive)
456 {
457
458     if(drive >0)
459       {
460         drivestring[0]= (unsigned char)drive + '@';
461         drivestring[1]=':';
462         drivestring[2]=0;
463       }
464     return drivestring;
465 }
466 static BOOL INT21_CreateFile( CONTEXT86 *context )
467 {
468     AX_reg(context) = _lcreat16( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
469                                           EDX_reg(context) ), CX_reg(context) );
470     return (AX_reg(context) == (WORD)HFILE_ERROR16);
471 }
472
473 static HFILE16 _lcreat16_uniq( LPCSTR path, INT attr )
474 {
475     /* Mask off all flags not explicitly allowed by the doc */
476     attr &= FILE_ATTRIBUTE_READONLY | FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_SYSTEM;
477     return FILE_AllocDosHandle( CreateFileA( path, GENERIC_READ | GENERIC_WRITE,
478                                              FILE_SHARE_READ | FILE_SHARE_WRITE, NULL,
479                                              CREATE_NEW, attr, -1 ));
480 }
481
482 static void OpenExistingFile( CONTEXT86 *context )
483 {
484     AX_reg(context) = _lopen16( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)),
485                                AL_reg(context) );
486     if (AX_reg(context) == (WORD)HFILE_ERROR16)
487     {
488         AX_reg(context) = GetLastError();
489         SET_CFLAG(context);
490     }
491 }
492
493 static BOOL INT21_ExtendedOpenCreateFile(CONTEXT86 *context )
494 {
495   BOOL bExtendedError = FALSE;
496   BYTE action = DL_reg(context);
497
498   /* Shuffle arguments to call OpenExistingFile */
499   AL_reg(context) = BL_reg(context);
500   DX_reg(context) = SI_reg(context);
501   /* BX,CX and DX should be preserved */
502   OpenExistingFile(context);
503
504   if ((EFL_reg(context) & 0x0001) == 0) /* File exists */
505   {
506       UINT16    uReturnCX = 0;
507
508       /* Now decide what do do */
509
510       if ((action & 0x07) == 0)
511       {
512           _lclose16( AX_reg(context) );
513           AX_reg(context) = 0x0050;     /*File exists*/
514           SET_CFLAG(context);
515           WARN("extended open/create: failed because file exists \n");
516       }
517       else if ((action & 0x07) == 2) 
518       {
519         /* Truncate it, but first check if opened for write */
520         if ((BL_reg(context) & 0x0007)== 0) 
521         {
522             _lclose16( AX_reg(context) );
523             WARN("extended open/create: failed, trunc on ro file\n");
524             AX_reg(context) = 0x000C;   /*Access code invalid*/
525             SET_CFLAG(context);
526         }
527         else
528         {
529                 TRACE("extended open/create: Closing before truncate\n");
530                 if (_lclose16( AX_reg(context) ))
531                 {
532                    WARN("extended open/create: close before trunc failed\n");
533                    AX_reg(context) = 0x0019;    /*Seek Error*/
534                    CX_reg(context) = 0;
535                    SET_CFLAG(context);
536                 }
537                 /* Shuffle arguments to call CreateFile */
538
539                 TRACE("extended open/create: Truncating\n");
540                 AL_reg(context) = BL_reg(context);
541                 /* CX is still the same */
542                 DX_reg(context) = SI_reg(context);
543                 bExtendedError = INT21_CreateFile(context);
544
545                 if (EFL_reg(context) & 0x0001)  /*no file open, flags set */
546                 {
547                     WARN("extended open/create: trunc failed\n");
548                     return bExtendedError;
549                 }
550                 uReturnCX = 0x3;
551         }
552       } 
553       else uReturnCX = 0x1;
554
555       CX_reg(context) = uReturnCX;
556   }
557   else /* file does not exist */
558   {
559       RESET_CFLAG(context); /* was set by OpenExistingFile(context) */
560       if ((action & 0xF0)== 0)
561       {
562         CX_reg(context) = 0;
563         SET_CFLAG(context);
564         WARN("extended open/create: failed, file dosen't exist\n");
565       }
566       else
567       {
568         /* Shuffle arguments to call CreateFile */
569         TRACE("extended open/create: Creating\n");
570         AL_reg(context) = BL_reg(context);
571         /* CX should still be the same */
572         DX_reg(context) = SI_reg(context);
573         bExtendedError = INT21_CreateFile(context);
574         if (EFL_reg(context) & 0x0001)  /*no file open, flags set */
575         {
576             WARN("extended open/create: create failed\n");
577             return bExtendedError;
578         }
579         CX_reg(context) = 2;
580       }
581   }
582
583   return bExtendedError;
584 }
585
586
587 static BOOL INT21_ChangeDir( CONTEXT86 *context )
588 {
589     int drive;
590     char *dirname = CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context));
591
592     TRACE("changedir %s\n", dirname);
593     if (dirname[0] && (dirname[1] == ':'))
594     {
595         drive = toupper(dirname[0]) - 'A';
596         dirname += 2;
597     }
598     else drive = DRIVE_GetCurrentDrive();
599     return DRIVE_Chdir( drive, dirname );
600 }
601
602
603 static int INT21_FindFirst( CONTEXT86 *context )
604 {
605     char *p;
606     const char *path;
607     DOS_FULL_NAME full_name;
608     FINDFILE_DTA *dta = (FINDFILE_DTA *)GetCurrentDTA(context);
609
610     path = (const char *)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
611     dta->unixPath = NULL;
612     if (!DOSFS_GetFullName( path, FALSE, &full_name ))
613     {
614         AX_reg(context) = GetLastError();
615         SET_CFLAG(context);
616         return 0;
617     }
618     dta->unixPath = HEAP_strdupA( GetProcessHeap(), 0, full_name.long_name );
619     p = strrchr( dta->unixPath, '/' );
620     *p = '\0';
621
622     /* Note: terminating NULL in dta->mask overwrites dta->search_attr
623      *       (doesn't matter as it is set below anyway)
624      */
625     if (!DOSFS_ToDosFCBFormat( p + 1, dta->mask ))
626     {
627         HeapFree( GetProcessHeap(), 0, dta->unixPath );
628         dta->unixPath = NULL;
629         SetLastError( ERROR_FILE_NOT_FOUND );
630         AX_reg(context) = ERROR_FILE_NOT_FOUND;
631         SET_CFLAG(context);
632         return 0;
633     }
634     dta->drive = (path[0] && (path[1] == ':')) ? toupper(path[0]) - 'A'
635                                                : DRIVE_GetCurrentDrive();
636     dta->count = 0;
637     dta->search_attr = CL_reg(context);
638     return 1;
639 }
640
641
642 static int INT21_FindNext( CONTEXT86 *context )
643 {
644     FINDFILE_DTA *dta = (FINDFILE_DTA *)GetCurrentDTA(context);
645     WIN32_FIND_DATAA entry;
646     int count;
647
648     if (!dta->unixPath) return 0;
649     if (!(count = DOSFS_FindNext( dta->unixPath, dta->mask, NULL, dta->drive,
650                                   dta->search_attr, dta->count, &entry )))
651     {
652         HeapFree( GetProcessHeap(), 0, dta->unixPath );
653         dta->unixPath = NULL;
654         return 0;
655     }
656     if ((int)dta->count + count > 0xffff)
657     {
658         WARN("Too many directory entries in %s\n", dta->unixPath );
659         HeapFree( GetProcessHeap(), 0, dta->unixPath );
660         dta->unixPath = NULL;
661         return 0;
662     }
663     dta->count += count;
664     dta->fileattr = entry.dwFileAttributes;
665     dta->filesize = entry.nFileSizeLow;
666     FileTimeToDosDateTime( &entry.ftLastWriteTime,
667                            &dta->filedate, &dta->filetime );
668     strcpy( dta->filename, entry.cAlternateFileName );
669     if (!memchr(dta->mask,'?',11)) {
670         /* wildcardless search, release resources in case no findnext will
671          * be issued, and as a workaround in case file creation messes up
672          * findnext, as sometimes happens with pkunzip */
673         HeapFree( GetProcessHeap(), 0, dta->unixPath );
674         dta->unixPath = NULL;
675     }
676     return 1;
677 }
678
679
680 static BOOL INT21_CreateTempFile( CONTEXT86 *context )
681 {
682     static int counter = 0;
683     char *name = CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context) );
684     char *p = name + strlen(name);
685
686     /* despite what Ralf Brown says, some programs seem to call without 
687      * ending backslash (DOS accepts that, so we accept it too) */
688     if ((p == name) || (p[-1] != '\\')) *p++ = '\\';
689
690     for (;;)
691     {
692         sprintf( p, "wine%04x.%03d", (int)getpid(), counter );
693         counter = (counter + 1) % 1000;
694
695         if ((AX_reg(context) = _lcreat16_uniq( name, 0 )) != (WORD)HFILE_ERROR16)
696         {
697             TRACE("created %s\n", name );
698             return TRUE;
699         }
700         if (GetLastError() != ERROR_FILE_EXISTS) return FALSE;
701     }
702 }
703
704
705 static BOOL INT21_GetCurrentDirectory( CONTEXT86 *context ) 
706 {
707     int drive = DOS_GET_DRIVE( DL_reg(context) );
708     char *ptr = (char *)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), ESI_reg(context) );
709
710     if (!DRIVE_IsValid(drive))
711     {
712         SetLastError( ERROR_INVALID_DRIVE );
713         return FALSE;
714     }
715     lstrcpynA( ptr, DRIVE_GetDosCwd(drive), 64 );
716     AX_reg(context) = 0x0100;                        /* success return code */
717     return TRUE;
718 }
719
720
721 static void INT21_GetDBCSLeadTable( CONTEXT86 *context )
722 {
723     if (heap || INT21_CreateHeap())
724     { /* return an empty table just as DOS 4.0+ does */
725         DS_reg(context) = DosHeapHandle;
726         SI_reg(context) = (int)&heap->DummyDBCSLeadTable - (int)heap;
727     }
728     else
729     {
730         AX_reg(context) = 0x1; /* error */
731         SET_CFLAG(context);
732     }
733 }
734
735
736 static int INT21_GetDiskSerialNumber( CONTEXT86 *context )
737 {
738     BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
739     int drive = DOS_GET_DRIVE( BL_reg(context) );
740         
741     if (!DRIVE_IsValid(drive))
742     {
743         SetLastError( ERROR_INVALID_DRIVE );
744         return 0;
745     }
746     
747     *(WORD *)dataptr = 0;
748     *(DWORD *)(dataptr + 2) = DRIVE_GetSerialNumber( drive );
749     memcpy( dataptr + 6, DRIVE_GetLabel( drive ), 11 );
750     strncpy(dataptr + 0x11, "FAT16   ", 8);
751     return 1;
752 }
753
754
755 static int INT21_SetDiskSerialNumber( CONTEXT86 *context )
756 {
757     BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
758     int drive = DOS_GET_DRIVE( BL_reg(context) );
759
760     if (!DRIVE_IsValid(drive))
761     {
762         SetLastError( ERROR_INVALID_DRIVE );
763         return 0;
764     }
765
766     DRIVE_SetSerialNumber( drive, *(DWORD *)(dataptr + 2) );
767     return 1;
768 }
769
770
771 /* microsoft's programmers should be shot for using CP/M style int21
772    calls in Windows for Workgroup's winfile.exe */
773
774 static int INT21_FindFirstFCB( CONTEXT86 *context )
775 {
776     BYTE *fcb = (BYTE *)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
777     FINDFILE_FCB *pFCB;
778     LPCSTR root, cwd;
779     int drive;
780
781     if (*fcb == 0xff) pFCB = (FINDFILE_FCB *)(fcb + 7);
782     else pFCB = (FINDFILE_FCB *)fcb;
783     drive = DOS_GET_DRIVE( pFCB->drive );
784     if (!DRIVE_IsValid( drive )) return 0;
785     root = DRIVE_GetRoot( drive );
786     cwd  = DRIVE_GetUnixCwd( drive );
787     pFCB->unixPath = HeapAlloc( GetProcessHeap(), 0,
788                                 strlen(root)+strlen(cwd)+2 );
789     if (!pFCB->unixPath) return 0;
790     strcpy( pFCB->unixPath, root );
791     strcat( pFCB->unixPath, "/" );
792     strcat( pFCB->unixPath, cwd );
793     pFCB->count = 0;
794     return 1;
795 }
796
797
798 static int INT21_FindNextFCB( CONTEXT86 *context )
799 {
800     BYTE *fcb = (BYTE *)CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context));
801     FINDFILE_FCB *pFCB;
802     DOS_DIRENTRY_LAYOUT *pResult = (DOS_DIRENTRY_LAYOUT *)GetCurrentDTA(context);
803     WIN32_FIND_DATAA entry;
804     BYTE attr;
805     int count;
806
807     if (*fcb == 0xff) /* extended FCB ? */
808     {
809         attr = fcb[6];
810         pFCB = (FINDFILE_FCB *)(fcb + 7);
811     }
812     else
813     {
814         attr = 0;
815         pFCB = (FINDFILE_FCB *)fcb;
816     }
817
818     if (!pFCB->unixPath) return 0;
819     if (!(count = DOSFS_FindNext( pFCB->unixPath, pFCB->filename, NULL,
820                                   DOS_GET_DRIVE( pFCB->drive ), attr,
821                                   pFCB->count, &entry )))
822     {
823         HeapFree( GetProcessHeap(), 0, pFCB->unixPath );
824         pFCB->unixPath = NULL;
825         return 0;
826     }
827     pFCB->count += count;
828
829     if (*fcb == 0xff) { /* place extended FCB header before pResult if called with extended FCB */
830         *(BYTE *)pResult = 0xff;
831         (BYTE *)pResult +=6; /* leave reserved field behind */
832         *(BYTE *)pResult = entry.dwFileAttributes;
833         ((BYTE *)pResult)++;
834     }
835     *(BYTE *)pResult = DOS_GET_DRIVE( pFCB->drive ); /* DOS_DIRENTRY_LAYOUT after current drive number */
836     ((BYTE *)pResult)++;
837     pResult->fileattr = entry.dwFileAttributes;
838     pResult->cluster  = 0;  /* what else? */
839     pResult->filesize = entry.nFileSizeLow;
840     memset( pResult->reserved, 0, sizeof(pResult->reserved) );
841     FileTimeToDosDateTime( &entry.ftLastWriteTime,
842                            &pResult->filedate, &pResult->filetime );
843
844     /* Convert file name to FCB format */
845
846     memset( pResult->filename, ' ', sizeof(pResult->filename) );
847     if (!strcmp( entry.cAlternateFileName, "." )) pResult->filename[0] = '.';
848     else if (!strcmp( entry.cAlternateFileName, ".." ))
849         pResult->filename[0] = pResult->filename[1] = '.';
850     else
851     {
852         char *p = strrchr( entry.cAlternateFileName, '.' );
853         if (p && p[1] && (p != entry.cAlternateFileName))
854         {
855             memcpy( pResult->filename, entry.cAlternateFileName,
856                     min( (p - entry.cAlternateFileName), 8 ) );
857             memcpy( pResult->filename + 8, p + 1, min( strlen(p), 3 ) );
858         }
859         else
860             memcpy( pResult->filename, entry.cAlternateFileName,
861                     min( strlen(entry.cAlternateFileName), 8 ) );
862     }
863     return 1;
864 }
865
866
867 static void DeleteFileFCB( CONTEXT86 *context )
868 {
869     FIXME("(%p): stub\n", context);
870 }
871
872 static void RenameFileFCB( CONTEXT86 *context )
873 {
874     FIXME("(%p): stub\n", context);
875 }
876
877
878
879 static void fLock( CONTEXT86 * context )
880 {
881
882     switch ( AX_reg(context) & 0xff )
883     {
884         case 0x00: /* LOCK */
885           TRACE("lock handle %d offset %ld length %ld\n",
886                 BX_reg(context),
887                 MAKELONG(DX_reg(context),CX_reg(context)),
888                 MAKELONG(DI_reg(context),SI_reg(context))) ;
889           if (!LockFile(FILE_GetHandle(BX_reg(context)),
890                         MAKELONG(DX_reg(context),CX_reg(context)), 0,
891                         MAKELONG(DI_reg(context),SI_reg(context)), 0)) {
892             AX_reg(context) = GetLastError();
893             SET_CFLAG(context);
894           }
895           break;
896
897         case 0x01: /* UNLOCK */
898           TRACE("unlock handle %d offset %ld length %ld\n",
899                 BX_reg(context),
900                 MAKELONG(DX_reg(context),CX_reg(context)),
901                 MAKELONG(DI_reg(context),SI_reg(context))) ;
902           if (!UnlockFile(FILE_GetHandle(BX_reg(context)),
903                           MAKELONG(DX_reg(context),CX_reg(context)), 0,
904                           MAKELONG(DI_reg(context),SI_reg(context)), 0)) {
905             AX_reg(context) = GetLastError();
906             SET_CFLAG(context);
907           }
908           return;
909         default:
910           AX_reg(context) = 0x0001;
911           SET_CFLAG(context);
912           return;
913      }
914
915
916 static BOOL
917 INT21_networkfunc (CONTEXT86 *context)
918 {
919      switch (AL_reg(context)) {
920      case 0x00: /* Get machine name. */
921      {
922           char *dst = CTX_SEG_OFF_TO_LIN (context,DS_reg(context),EDX_reg(context));
923           TRACE("getting machine name to %p\n", dst);
924           if (gethostname (dst, 15))
925           {
926                WARN("failed!\n");
927                SetLastError( ER_NoNetwork );
928                return TRUE;
929           } else {
930                int len = strlen (dst);
931                while (len < 15)
932                     dst[len++] = ' ';
933                dst[15] = 0;
934                CH_reg(context) = 1; /* Valid */
935                CL_reg(context) = 1; /* NETbios number??? */
936                TRACE("returning %s\n", debugstr_an (dst, 16));
937                return FALSE;
938           }
939      }
940
941      default:
942           SetLastError( ER_NoNetwork );
943           return TRUE;
944      }
945 }
946
947 static void INT21_SetCurrentPSP(WORD psp)
948 {
949     LPDOSTASK lpDosTask = MZ_Current();
950     if (lpDosTask)
951         lpDosTask->psp_seg = psp;
952     else
953         ERR("Cannot change PSP for non-DOS task!\n");
954 }
955     
956 static WORD INT21_GetCurrentPSP()
957 {
958     LPDOSTASK lpDosTask = MZ_Current();
959     if (lpDosTask)
960         return lpDosTask->psp_seg;
961     else
962         return GetCurrentPDB16();
963 }
964
965
966 /***********************************************************************
967  *           INT21_GetExtendedError
968  */
969 static void INT21_GetExtendedError( CONTEXT86 *context )
970 {
971     BYTE class, action, locus;
972     WORD error = GetLastError();
973
974     switch(error)
975     {
976     case ERROR_SUCCESS:
977         class = action = locus = 0;
978         break;
979     case ERROR_DIR_NOT_EMPTY:
980         class  = EC_Exists;
981         action = SA_Ignore;
982         locus  = EL_Disk;
983         break;
984     case ERROR_ACCESS_DENIED:
985         class  = EC_AccessDenied;
986         action = SA_Abort;
987         locus  = EL_Disk;
988         break;
989     case ERROR_CANNOT_MAKE:
990         class  = EC_AccessDenied;
991         action = SA_Abort;
992         locus  = EL_Unknown;
993         break;
994     case ERROR_DISK_FULL:
995     case ERROR_HANDLE_DISK_FULL:
996         class  = EC_MediaError;
997         action = SA_Abort;
998         locus  = EL_Disk;
999         break;
1000     case ERROR_FILE_EXISTS:
1001     case ERROR_ALREADY_EXISTS:
1002         class  = EC_Exists;
1003         action = SA_Abort;
1004         locus  = EL_Disk;
1005         break;
1006     case ERROR_FILE_NOT_FOUND:
1007         class  = EC_NotFound;
1008         action = SA_Abort;
1009         locus  = EL_Disk;
1010         break;
1011     case ER_GeneralFailure:
1012         class  = EC_SystemFailure;
1013         action = SA_Abort;
1014         locus  = EL_Unknown;
1015         break;
1016     case ERROR_INVALID_DRIVE:
1017         class  = EC_MediaError;
1018         action = SA_Abort;
1019         locus  = EL_Disk;
1020         break;
1021     case ERROR_INVALID_HANDLE:
1022         class  = EC_ProgramError;
1023         action = SA_Abort;
1024         locus  = EL_Disk;
1025         break;
1026     case ERROR_LOCK_VIOLATION:
1027         class  = EC_AccessDenied;
1028         action = SA_Abort;
1029         locus  = EL_Disk;
1030         break;
1031     case ERROR_NO_MORE_FILES:
1032         class  = EC_MediaError;
1033         action = SA_Abort;
1034         locus  = EL_Disk;
1035         break;
1036     case ER_NoNetwork:
1037         class  = EC_NotFound;
1038         action = SA_Abort;
1039         locus  = EL_Network;
1040         break;
1041     case ERROR_NOT_ENOUGH_MEMORY:
1042         class  = EC_OutOfResource;
1043         action = SA_Abort;
1044         locus  = EL_Memory;
1045         break;
1046     case ERROR_PATH_NOT_FOUND:
1047         class  = EC_NotFound;
1048         action = SA_Abort;
1049         locus  = EL_Disk;
1050         break;
1051     case ERROR_SEEK:
1052         class  = EC_NotFound;
1053         action = SA_Ignore;
1054         locus  = EL_Disk;
1055         break;
1056     case ERROR_SHARING_VIOLATION:
1057         class  = EC_Temporary;
1058         action = SA_Retry;
1059         locus  = EL_Disk;
1060         break;
1061     case ERROR_TOO_MANY_OPEN_FILES:
1062         class  = EC_ProgramError;
1063         action = SA_Abort;
1064         locus  = EL_Disk;
1065         break;
1066     default:
1067         FIXME("Unknown error %d\n", error );
1068         class  = EC_SystemFailure;
1069         action = SA_Abort;
1070         locus  = EL_Unknown;
1071         break;
1072     }
1073     TRACE("GET EXTENDED ERROR code 0x%02x class 0x%02x action 0x%02x locus %02x\n",
1074            error, class, action, locus );
1075     AX_reg(context) = error;
1076     BH_reg(context) = class;
1077     BL_reg(context) = action;
1078     CH_reg(context) = locus;
1079 }
1080
1081 /***********************************************************************
1082  *           DOS3Call  (KERNEL.102)
1083  */
1084 void WINAPI DOS3Call( CONTEXT86 *context )
1085 {
1086     BOOL        bSetDOSExtendedError = FALSE;
1087
1088
1089     TRACE("AX=%04x BX=%04x CX=%04x DX=%04x "
1090           "SI=%04x DI=%04x DS=%04x ES=%04x EFL=%08lx\n",
1091           AX_reg(context), BX_reg(context), CX_reg(context), DX_reg(context),
1092           SI_reg(context), DI_reg(context),
1093           (WORD)DS_reg(context), (WORD)ES_reg(context),
1094           EFL_reg(context) );
1095
1096
1097     if (AH_reg(context) == 0x59)  /* Get extended error info */
1098     {
1099         INT21_GetExtendedError( context );
1100         return;
1101     }
1102
1103     if (AH_reg(context) == 0x0C)  /* Flush buffer and read standard input */
1104     {
1105         TRACE("FLUSH BUFFER AND READ STANDARD INPUT\n");
1106         /* no flush here yet */
1107         AH_reg(context) = AL_reg(context);
1108     }
1109
1110     if (AH_reg(context)>=0x2f) {
1111         /* extended error is used by (at least) functions 0x2f to 0x62 */
1112         SetLastError(0);
1113     }
1114     RESET_CFLAG(context);  /* Not sure if this is a good idea */
1115
1116     switch(AH_reg(context)) 
1117     {
1118     case 0x03: /* READ CHARACTER FROM STDAUX  */
1119     case 0x04: /* WRITE CHARACTER TO STDAUX */
1120     case 0x05: /* WRITE CHARACTER TO PRINTER */
1121     case 0x0f: /* OPEN FILE USING FCB */
1122     case 0x10: /* CLOSE FILE USING FCB */
1123     case 0x14: /* SEQUENTIAL READ FROM FCB FILE */              
1124     case 0x15: /* SEQUENTIAL WRITE TO FCB FILE */
1125     case 0x16: /* CREATE OR TRUNCATE FILE USING FCB */
1126     case 0x21: /* READ RANDOM RECORD FROM FCB FILE */
1127     case 0x22: /* WRITE RANDOM RECORD TO FCB FILE */
1128     case 0x23: /* GET FILE SIZE FOR FCB */
1129     case 0x24: /* SET RANDOM RECORD NUMBER FOR FCB */
1130     case 0x26: /* CREATE NEW PROGRAM SEGMENT PREFIX */
1131     case 0x27: /* RANDOM BLOCK READ FROM FCB FILE */
1132     case 0x28: /* RANDOM BLOCK WRITE TO FCB FILE */
1133         INT_BARF( context, 0x21 );
1134         break;
1135
1136     case 0x00: /* TERMINATE PROGRAM */
1137         TRACE("TERMINATE PROGRAM\n");
1138         ExitThread( 0 );
1139         break;
1140
1141     case 0x01: /* READ CHARACTER FROM STANDARD INPUT, WITH ECHO */
1142         TRACE("DIRECT CHARACTER INPUT WITH ECHO\n");
1143         AL_reg(context) = CONSOLE_GetCharacter();
1144         /* FIXME: no echo */
1145         break;
1146
1147     case 0x02: /* WRITE CHARACTER TO STANDARD OUTPUT */
1148         TRACE("Write Character to Standard Output\n");
1149         CONSOLE_Write(DL_reg(context), 0, 0, 0);
1150         break;
1151
1152     case 0x06: /* DIRECT CONSOLE IN/OUTPUT */
1153         /* FIXME: Use DOSDEV_Peek/Read/Write(DOSDEV_Console(),...) !! */
1154         if (DL_reg(context) == 0xff) {
1155             static char scan = 0;
1156             TRACE("Direct Console Input\n");
1157             if (scan) {
1158                 /* return pending scancode */
1159                 AL_reg(context) = scan;
1160                 RESET_ZFLAG(context);
1161                 scan = 0;
1162             } else {
1163                 char ascii;
1164                 if (INT_Int16ReadChar(&ascii,&scan,TRUE)) {
1165                     INT_Int16ReadChar(&ascii,&scan,FALSE);
1166                     /* return ASCII code */
1167                     AL_reg(context) = ascii;
1168                     RESET_ZFLAG(context);
1169                     /* return scan code on next call only if ascii==0 */
1170                     if (ascii) scan = 0;
1171                 } else {
1172                     /* nothing pending, clear everything */
1173                     AL_reg(context) = 0;
1174                     SET_ZFLAG(context);
1175                     scan = 0; /* just in case */
1176                 }
1177             }
1178         } else {
1179             TRACE("Direct Console Output\n");
1180             CONSOLE_Write(DL_reg(context), 0, 0, 0);
1181         }
1182         break;
1183
1184     case 0x07: /* DIRECT CHARACTER INPUT WITHOUT ECHO */
1185         /* FIXME: Use DOSDEV_Peek/Read(DOSDEV_Console(),...) !! */
1186         TRACE("DIRECT CHARACTER INPUT WITHOUT ECHO\n");
1187         INT_Int16ReadChar(&AL_reg(context), NULL, FALSE);
1188         break;
1189
1190     case 0x08: /* CHARACTER INPUT WITHOUT ECHO */
1191         /* FIXME: Use DOSDEV_Peek/Read(DOSDEV_Console(),...) !! */
1192         TRACE("CHARACTER INPUT WITHOUT ECHO\n");
1193         INT_Int16ReadChar(&AL_reg(context), NULL, FALSE);
1194         break;
1195
1196     case 0x09: /* WRITE STRING TO STANDARD OUTPUT */
1197         TRACE("WRITE '$'-terminated string from %04lX:%04X to stdout\n",
1198               DS_reg(context),DX_reg(context) );
1199         {
1200             LPSTR data = CTX_SEG_OFF_TO_LIN(context,DS_reg(context),EDX_reg(context));
1201             LPSTR p = data;
1202             /* do NOT use strchr() to calculate the string length,
1203             as '\0' is valid string content, too !
1204             Maybe we should check for non-'$' strings, but DOS doesn't. */
1205             while (*p != '$') p++;
1206             _hwrite16( 1, data, (int)p - (int)data);
1207             AL_reg(context) = '$'; /* yes, '$' (0x24) gets returned in AL */
1208         }
1209         break;
1210
1211     case 0x0a: /* BUFFERED INPUT */
1212       {
1213         char *buffer = ((char *)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), 
1214                                                    EDX_reg(context) ));
1215         int res;
1216         
1217         TRACE("BUFFERED INPUT (size=%d)\n",buffer[0]);
1218         if (buffer[1])
1219           TRACE("Handle old chars in buffer!\n");
1220         res=_lread16( 0, buffer+2,buffer[0]);
1221         buffer[1]=res;
1222         if(buffer[res+1] == '\n')
1223           buffer[res+1] = '\r';
1224         break;
1225       }
1226
1227     case 0x0b: {/* GET STDIN STATUS */
1228                 char x1,x2;
1229
1230                 if (CONSOLE_CheckForKeystroke(&x1,&x2))
1231                     AL_reg(context) = 0xff; 
1232                 else
1233                     AL_reg(context) = 0; 
1234                 break;
1235         }
1236     case 0x2e: /* SET VERIFY FLAG */
1237         TRACE("SET VERIFY FLAG ignored\n");
1238         /* we cannot change the behaviour anyway, so just ignore it */
1239         break;
1240
1241     case 0x18: /* NULL FUNCTIONS FOR CP/M COMPATIBILITY */
1242     case 0x1d:
1243     case 0x1e:
1244     case 0x20:
1245     case 0x6b: /* NULL FUNCTION */
1246         AL_reg(context) = 0;
1247         break;
1248         
1249     case 0x5c: /* "FLOCK" - RECORD LOCKING */
1250         fLock(context);
1251         break;
1252
1253     case 0x0d: /* DISK BUFFER FLUSH */
1254         TRACE("DISK BUFFER FLUSH ignored\n");
1255         RESET_CFLAG(context); /* dos 6+ only */
1256         break;
1257
1258     case 0x0e: /* SELECT DEFAULT DRIVE */
1259         TRACE("SELECT DEFAULT DRIVE %d\n", DL_reg(context));
1260         DRIVE_SetCurrentDrive( DL_reg(context) );
1261         AL_reg(context) = MAX_DOS_DRIVES;
1262         break;
1263
1264     case 0x11: /* FIND FIRST MATCHING FILE USING FCB */
1265         TRACE("FIND FIRST MATCHING FILE USING FCB %p\n", 
1266               CTX_SEG_OFF_TO_LIN(context, DS_reg(context), EDX_reg(context)));
1267         if (!INT21_FindFirstFCB(context))
1268         {
1269             AL_reg(context) = 0xff;
1270             break;
1271         }
1272         /* else fall through */
1273
1274     case 0x12: /* FIND NEXT MATCHING FILE USING FCB */
1275         AL_reg(context) = INT21_FindNextFCB(context) ? 0x00 : 0xff;
1276         break;
1277
1278     case 0x13: /* DELETE FILE USING FCB */
1279         DeleteFileFCB(context);
1280         break;
1281             
1282     case 0x17: /* RENAME FILE USING FCB */
1283         RenameFileFCB(context);
1284         break;
1285
1286     case 0x19: /* GET CURRENT DEFAULT DRIVE */
1287         AL_reg(context) = DRIVE_GetCurrentDrive();
1288         break;
1289
1290     case 0x1a: /* SET DISK TRANSFER AREA ADDRESS */
1291         {
1292             TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
1293             pTask->dta = PTR_SEG_OFF_TO_SEGPTR(DS_reg(context),DX_reg(context));
1294             TRACE("Set DTA: %08lx\n", pTask->dta);
1295         }
1296         break;
1297
1298     case 0x1b: /* GET ALLOCATION INFORMATION FOR DEFAULT DRIVE */
1299         DL_reg(context) = 0;
1300         if (!INT21_GetDriveAllocInfo(context)) AX_reg(context) = 0xffff;
1301         break;
1302         
1303     case 0x1c: /* GET ALLOCATION INFORMATION FOR SPECIFIC DRIVE */
1304         if (!INT21_GetDriveAllocInfo(context)) AX_reg(context) = 0xffff;
1305         break;
1306
1307     case 0x1f: /* GET DRIVE PARAMETER BLOCK FOR DEFAULT DRIVE */
1308         GetDrivePB(context, DRIVE_GetCurrentDrive());
1309         break;
1310                 
1311     case 0x25: /* SET INTERRUPT VECTOR */
1312         INT_CtxSetHandler( context, AL_reg(context),
1313                         (FARPROC16)PTR_SEG_OFF_TO_SEGPTR( DS_reg(context),
1314                                                           DX_reg(context)));
1315         break;
1316
1317     case 0x29: /* PARSE FILENAME INTO FCB */
1318         INT21_ParseFileNameIntoFCB(context);
1319         break;
1320
1321     case 0x2a: /* GET SYSTEM DATE */
1322         INT21_GetSystemDate(context);
1323         break;
1324
1325     case 0x2b: /* SET SYSTEM DATE */
1326         FIXME("SetSystemDate(%02d/%02d/%04d): not allowed\n",
1327               DL_reg(context), DH_reg(context), CX_reg(context) );
1328         AL_reg(context) = 0;  /* Let's pretend we succeeded */
1329         break;
1330
1331     case 0x2c: /* GET SYSTEM TIME */
1332         INT21_GetSystemTime(context);
1333         break;
1334
1335     case 0x2d: /* SET SYSTEM TIME */
1336         FIXME("SetSystemTime(%02d:%02d:%02d.%02d): not allowed\n",
1337               CH_reg(context), CL_reg(context),
1338               DH_reg(context), DL_reg(context) );
1339         AL_reg(context) = 0;  /* Let's pretend we succeeded */
1340         break;
1341
1342     case 0x2f: /* GET DISK TRANSFER AREA ADDRESS */
1343         TRACE("GET DISK TRANSFER AREA ADDRESS\n");
1344         {
1345             TDB *pTask = (TDB *)GlobalLock16( GetCurrentTask() );
1346             ES_reg(context) = SELECTOROF( pTask->dta );
1347             BX_reg(context) = OFFSETOF( pTask->dta );
1348         }
1349         break;
1350             
1351     case 0x30: /* GET DOS VERSION */
1352         TRACE("GET DOS VERSION %s requested\n",
1353               (AL_reg(context) == 0x00)?"OEM number":"version flag");
1354         AX_reg(context) = (HIWORD(GetVersion16()) >> 8) |
1355                           (HIWORD(GetVersion16()) << 8);
1356 #if 0
1357         AH_reg(context) = 0x7;
1358         AL_reg(context) = 0xA;
1359 #endif
1360
1361         BX_reg(context) = 0x00FF;     /* 0x123456 is Wine's serial # */
1362         CX_reg(context) = 0x0000;
1363         break;
1364
1365     case 0x31: /* TERMINATE AND STAY RESIDENT */
1366         FIXME("TERMINATE AND STAY RESIDENT stub\n");
1367         break;
1368
1369     case 0x32: /* GET DOS DRIVE PARAMETER BLOCK FOR SPECIFIC DRIVE */
1370         TRACE("GET DOS DRIVE PARAMETER BLOCK FOR DRIVE %s\n",
1371               INT21_DriveName( DL_reg(context)));
1372         GetDrivePB(context, DOS_GET_DRIVE( DL_reg(context) ) );
1373         break;
1374
1375     case 0x33: /* MULTIPLEXED */
1376         switch (AL_reg(context))
1377         {
1378               case 0x00: /* GET CURRENT EXTENDED BREAK STATE */
1379                 TRACE("GET CURRENT EXTENDED BREAK STATE\n");
1380                 DL_reg(context) = DOSCONF_config.brk_flag;
1381                 break;
1382
1383               case 0x01: /* SET EXTENDED BREAK STATE */
1384                 TRACE("SET CURRENT EXTENDED BREAK STATE\n");
1385                 DOSCONF_config.brk_flag = (DL_reg(context) > 0);
1386                 break;          
1387                 
1388               case 0x02: /* GET AND SET EXTENDED CONTROL-BREAK CHECKING STATE*/
1389                 TRACE("GET AND SET EXTENDED CONTROL-BREAK CHECKING STATE\n");
1390                 /* ugly coding in order to stay reentrant */
1391                 if (DL_reg(context))
1392                 {
1393                     DL_reg(context) = DOSCONF_config.brk_flag;
1394                     DOSCONF_config.brk_flag = 1;
1395                 }
1396                 else
1397                 {
1398                     DL_reg(context) = DOSCONF_config.brk_flag;
1399                     DOSCONF_config.brk_flag = 0;
1400                 }
1401                 break;
1402
1403               case 0x05: /* GET BOOT DRIVE */
1404                 TRACE("GET BOOT DRIVE\n");
1405                 DL_reg(context) = 3;
1406                 /* c: is Wine's bootdrive (a: is 1)*/
1407                 break;
1408                                 
1409               case 0x06: /* GET TRUE VERSION NUMBER */
1410                 TRACE("GET TRUE VERSION NUMBER\n");
1411                 BX_reg(context) = (HIWORD(GetVersion16() >> 8)) |
1412                                   (HIWORD(GetVersion16() << 8));
1413                 DX_reg(context) = 0x00;
1414                 break;
1415
1416               default:
1417                 INT_BARF( context, 0x21 );
1418                 break;                  
1419         }
1420         break;  
1421             
1422     case 0x34: /* GET ADDRESS OF INDOS FLAG */
1423         TRACE("GET ADDRESS OF INDOS FLAG\n");
1424         if (!heap) INT21_CreateHeap();
1425         ES_reg(context) = DosHeapHandle;
1426         BX_reg(context) = (int)&heap->InDosFlag - (int)heap;
1427         break;
1428
1429     case 0x35: /* GET INTERRUPT VECTOR */
1430         TRACE("GET INTERRUPT VECTOR 0x%02x\n",AL_reg(context));
1431         {
1432             FARPROC16 addr = INT_CtxGetHandler( context, AL_reg(context) );
1433             ES_reg(context) = SELECTOROF(addr);
1434             BX_reg(context) = OFFSETOF(addr);
1435         }
1436         break;
1437
1438     case 0x36: /* GET FREE DISK SPACE */
1439         TRACE("GET FREE DISK SPACE FOR DRIVE %s\n",
1440               INT21_DriveName( DL_reg(context)));
1441         if (!INT21_GetFreeDiskSpace(context)) AX_reg(context) = 0xffff;
1442         break;
1443
1444     case 0x37: 
1445       {
1446         unsigned char switchchar='/';
1447         switch (AL_reg(context))
1448         {
1449         case 0x00: /* "SWITCHAR" - GET SWITCH CHARACTER */
1450           TRACE("SWITCHAR - GET SWITCH CHARACTER\n");
1451           AL_reg(context) = 0x00; /* success*/
1452           DL_reg(context) = switchchar;
1453           break;
1454         case 0x01: /*"SWITCHAR" - SET SWITCH CHARACTER*/
1455           TRACE("SWITCHAR - SET SWITCH CHARACTER\n");
1456           switchchar = DL_reg(context);
1457           AL_reg(context) = 0x00; /* success*/
1458           break;
1459         default: /*"AVAILDEV" - SPECIFY \DEV\ PREFIX USE*/
1460           INT_BARF( context, 0x21 );
1461           break;
1462         }
1463         break;
1464       }
1465
1466     case 0x38: /* GET COUNTRY-SPECIFIC INFORMATION */
1467         TRACE("GET COUNTRY-SPECIFIC INFORMATION for country 0x%02x\n",
1468               AL_reg(context));
1469         AX_reg(context) = 0x02; /* no country support available */
1470         SET_CFLAG(context);
1471         break;
1472
1473     case 0x39: /* "MKDIR" - CREATE SUBDIRECTORY */
1474         TRACE("MKDIR %s\n",
1475               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)));
1476         bSetDOSExtendedError = (!CreateDirectory16( CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),
1477                                                            EDX_reg(context) ), NULL));
1478         /* FIXME: CreateDirectory's LastErrors will clash with the ones
1479          * used by dos. AH=39 only returns 3 (path not found) and 5 (access
1480          * denied), while CreateDirectory return several ones. remap some of
1481          * them. -Marcus
1482          */
1483         if (bSetDOSExtendedError) {
1484                 switch (GetLastError()) {
1485                 case ERROR_ALREADY_EXISTS:
1486                 case ERROR_FILENAME_EXCED_RANGE:
1487                 case ERROR_DISK_FULL:
1488                         SetLastError(ERROR_ACCESS_DENIED);
1489                         break;
1490                 default: break;
1491                 }
1492         }
1493         break;
1494         
1495     case 0x3a: /* "RMDIR" - REMOVE SUBDIRECTORY */
1496         TRACE("RMDIR %s\n",
1497               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)));
1498         bSetDOSExtendedError = (!RemoveDirectory16( CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),
1499                                                                  EDX_reg(context) )));
1500         break;
1501
1502     case 0x3b: /* "CHDIR" - SET CURRENT DIRECTORY */
1503         TRACE("CHDIR %s\n",
1504               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)));
1505         bSetDOSExtendedError = !INT21_ChangeDir(context);
1506         break;
1507         
1508     case 0x3c: /* "CREAT" - CREATE OR TRUNCATE FILE */
1509         TRACE("CREAT flag 0x%02x %s\n",CX_reg(context),
1510               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)));
1511         bSetDOSExtendedError = INT21_CreateFile( context );
1512         break;
1513
1514     case 0x3d: /* "OPEN" - OPEN EXISTING FILE */
1515         TRACE("OPEN mode 0x%02x %s\n",AL_reg(context),
1516               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)));
1517         OpenExistingFile(context);
1518         break;
1519
1520     case 0x3e: /* "CLOSE" - CLOSE FILE */
1521         TRACE("CLOSE handle %d\n",BX_reg(context));
1522         bSetDOSExtendedError = ((AX_reg(context) = _lclose16( BX_reg(context) )) != 0);
1523         break;
1524
1525     case 0x3f: /* "READ" - READ FROM FILE OR DEVICE */
1526         TRACE("READ from %d to %04lX:%04X for %d byte\n",BX_reg(context),
1527               DS_reg(context),DX_reg(context),CX_reg(context) );
1528         {
1529             LONG result;
1530             if (ISV86(context))
1531                 result = _hread16( BX_reg(context),
1532                                    CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1533                                                                EDX_reg(context) ),
1534                                    CX_reg(context) );
1535             else
1536                 result = WIN16_hread( BX_reg(context),
1537                                       PTR_SEG_OFF_TO_SEGPTR( DS_reg(context),
1538                                                              EDX_reg(context) ),
1539                                       CX_reg(context) );
1540             if (result == -1) bSetDOSExtendedError = TRUE;
1541             else AX_reg(context) = (WORD)result;
1542         }
1543         break;
1544
1545     case 0x40: /* "WRITE" - WRITE TO FILE OR DEVICE */
1546         TRACE("WRITE from %04lX:%04X to handle %d for %d byte\n",
1547               DS_reg(context),DX_reg(context),BX_reg(context),CX_reg(context) );
1548         {
1549             LONG result = _hwrite16( BX_reg(context),
1550                                      CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),
1551                                                          EDX_reg(context) ),
1552                                      CX_reg(context) );
1553             if (result == -1) bSetDOSExtendedError = TRUE;
1554             else AX_reg(context) = (WORD)result;
1555         }
1556         break;
1557
1558     case 0x41: /* "UNLINK" - DELETE FILE */
1559         TRACE("UNLINK %s\n",
1560               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)));
1561         bSetDOSExtendedError = (!DeleteFileA( CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),
1562                                                              EDX_reg(context) )));
1563         break;
1564
1565     case 0x42: /* "LSEEK" - SET CURRENT FILE POSITION */
1566         TRACE("LSEEK handle %d offset %ld from %s\n",
1567               BX_reg(context), MAKELONG(DX_reg(context),CX_reg(context)),
1568               (AL_reg(context)==0)?"start of file":(AL_reg(context)==1)?
1569               "current file position":"end of file");
1570         {
1571             LONG status = _llseek16( BX_reg(context),
1572                                      MAKELONG(DX_reg(context),CX_reg(context)),
1573                                      AL_reg(context) );
1574             if (status == -1) bSetDOSExtendedError = TRUE;
1575             else
1576             {
1577                 AX_reg(context) = LOWORD(status);
1578                 DX_reg(context) = HIWORD(status);
1579             }
1580         }
1581         break;
1582
1583     case 0x43: /* FILE ATTRIBUTES */
1584         switch (AL_reg(context))
1585         {
1586         case 0x00:
1587             TRACE("GET FILE ATTRIBUTES for %s\n", 
1588                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)));
1589             AX_reg(context) = (WORD)GetFileAttributesA(
1590                                           CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
1591                                                              EDX_reg(context)));
1592             if (AX_reg(context) == 0xffff) bSetDOSExtendedError = TRUE;
1593             else CX_reg(context) = AX_reg(context);
1594             break;
1595
1596         case 0x01:
1597             TRACE("SET FILE ATTRIBUTES 0x%02x for %s\n", CX_reg(context),
1598                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)));
1599             bSetDOSExtendedError = 
1600                 (!SetFileAttributesA( CTX_SEG_OFF_TO_LIN(context, DS_reg(context), 
1601                                                            EDX_reg(context)),
1602                                                            CX_reg(context) ));
1603             break;
1604         case 0x02:
1605             FIXME("GET COMPRESSED FILE SIZE for %s stub\n",
1606                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)));
1607         }
1608         break;
1609         
1610     case 0x44: /* IOCTL */
1611         switch (AL_reg(context))
1612         {
1613         case 0x00:
1614             ioctlGetDeviceInfo(context);
1615             break;
1616
1617         case 0x01:
1618             break;
1619         case 0x02:{
1620             const DOS_DEVICE *dev;
1621             if ((dev = DOSFS_GetDeviceByHandle( FILE_GetHandle(BX_reg(context)) )) &&
1622                 !strcasecmp( dev->name, "SCSIMGR$" ))
1623             {
1624                 ASPI_DOS_HandleInt(context);
1625             }
1626             break;
1627        }
1628         case 0x05:{     /* IOCTL - WRITE TO BLOCK DEVICE CONTROL CHANNEL */
1629             /*BYTE *dataptr = CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context));*/
1630             int drive = DOS_GET_DRIVE(BL_reg(context));
1631
1632             FIXME("program tried to write to block device control channel of drive %d:\n",drive);
1633             /* for (i=0;i<CX_reg(context);i++)
1634                 fprintf(stdnimp,"%02x ",dataptr[i]);
1635             fprintf(stdnimp,"\n");*/
1636             AX_reg(context)=CX_reg(context);
1637             break;
1638         }
1639         case 0x08:   /* Check if drive is removable. */
1640             TRACE("IOCTL - CHECK IF BLOCK DEVICE REMOVABLE for drive %s\n",
1641                  INT21_DriveName( BL_reg(context)));
1642             switch(GetDriveType16( DOS_GET_DRIVE( BL_reg(context) )))
1643             {
1644             case DRIVE_CANNOTDETERMINE:
1645                 SetLastError( ERROR_INVALID_DRIVE );
1646                 AX_reg(context) = ERROR_INVALID_DRIVE;
1647                 SET_CFLAG(context);
1648                 break;
1649             case DRIVE_REMOVABLE:
1650                 AX_reg(context) = 0;      /* removable */
1651                 break;
1652             default:
1653                 AX_reg(context) = 1;   /* not removable */
1654                 break;
1655             }
1656             break;
1657
1658         case 0x09:   /* CHECK IF BLOCK DEVICE REMOTE */
1659             TRACE("IOCTL - CHECK IF BLOCK DEVICE REMOTE for drive %s\n",
1660                  INT21_DriveName( BL_reg(context))); 
1661             switch(GetDriveType16( DOS_GET_DRIVE( BL_reg(context) )))
1662             {
1663             case DRIVE_CANNOTDETERMINE:
1664                 SetLastError( ERROR_INVALID_DRIVE );
1665                 AX_reg(context) = ERROR_INVALID_DRIVE;
1666                 SET_CFLAG(context);
1667                 break;
1668             case DRIVE_REMOTE:
1669                 DX_reg(context) = (1<<9) | (1<<12);  /* remote */
1670                 break;
1671             default:
1672                 DX_reg(context) = 0;  /* FIXME: use driver attr here */
1673                 break;
1674             }
1675             break;
1676
1677         case 0x0a: /* check if handle (BX) is remote */
1678             TRACE("IOCTL - CHECK IF HANDLE %d IS REMOTE\n",BX_reg(context));
1679             /* returns DX, bit 15 set if remote, bit 14 set if date/time
1680              * not set on close
1681              */
1682             DX_reg(context) = 0;
1683             break;
1684
1685         case 0x0b:   /* SET SHARING RETRY COUNT */
1686             TRACE("IOCTL - SET SHARING RETRY COUNT pause %d retries %d\n",
1687                  CX_reg(context), DX_reg(context));
1688             if (!CX_reg(context))
1689             { 
1690                 AX_reg(context) = 1;
1691                 SET_CFLAG(context);
1692                 break;
1693             }
1694             DOSMEM_LOL()->sharing_retry_delay = CX_reg(context);
1695             if (!DX_reg(context))
1696                 DOSMEM_LOL()->sharing_retry_count = DX_reg(context);
1697             RESET_CFLAG(context);
1698             break;
1699
1700         case 0x0d:
1701             TRACE("IOCTL - GENERIC BLOCK DEVICE REQUEST %s\n",
1702                   INT21_DriveName( BL_reg(context)));
1703             bSetDOSExtendedError = ioctlGenericBlkDevReq(context);
1704             break;
1705
1706         case 0x0e: /* get logical drive mapping */
1707             TRACE("IOCTL - GET LOGICAL DRIVE MAP for drive %s\n",
1708                   INT21_DriveName( BL_reg(context)));
1709             AL_reg(context) = 0; /* drive has no mapping - FIXME: may be wrong*/
1710             break;
1711
1712         case 0x0F:   /* Set logical drive mapping */
1713             {
1714             int drive;
1715             TRACE("IOCTL - SET LOGICAL DRIVE MAP for drive %s\n",
1716                   INT21_DriveName( BL_reg(context))); 
1717             drive = DOS_GET_DRIVE ( BL_reg(context) );
1718             if ( ! DRIVE_SetLogicalMapping ( drive, drive+1 ) )
1719             {
1720                 SET_CFLAG(context);
1721                 AX_reg(context) = 0x000F;  /* invalid drive */
1722             }
1723             break;
1724             }
1725
1726         case 0xe0:  /* Sun PC-NFS API */
1727             /* not installed */
1728             break;
1729                 
1730         default:
1731             INT_BARF( context, 0x21 );
1732             break;
1733         }
1734         break;
1735
1736     case 0x45: /* "DUP" - DUPLICATE FILE HANDLE */
1737         {
1738             HANDLE handle;
1739             TRACE("DUP - DUPLICATE FILE HANDLE %d\n",BX_reg(context));
1740             if ((bSetDOSExtendedError = !DuplicateHandle( GetCurrentProcess(),
1741                                                           FILE_GetHandle(BX_reg(context)),
1742                                                           GetCurrentProcess(), &handle,
1743                                                           0, TRUE, DUPLICATE_SAME_ACCESS )))
1744                 AX_reg(context) = HFILE_ERROR16;
1745             else
1746                 AX_reg(context) = FILE_AllocDosHandle(handle);
1747             break;
1748         }
1749
1750     case 0x46: /* "DUP2", "FORCEDUP" - FORCE DUPLICATE FILE HANDLE */
1751         TRACE("FORCEDUP - FORCE DUPLICATE FILE HANDLE %d to %d\n",
1752               BX_reg(context),CX_reg(context));
1753         bSetDOSExtendedError = (FILE_Dup2( BX_reg(context), CX_reg(context) ) == HFILE_ERROR16);
1754         break;
1755
1756     case 0x47: /* "CWD" - GET CURRENT DIRECTORY */
1757         TRACE("CWD - GET CURRENT DIRECTORY for drive %s\n",
1758               INT21_DriveName( DL_reg(context)));
1759         bSetDOSExtendedError = !INT21_GetCurrentDirectory(context);
1760         break;
1761
1762     case 0x48: /* ALLOCATE MEMORY */
1763         TRACE("ALLOCATE MEMORY for %d paragraphs\n", BX_reg(context));
1764         {
1765             LPVOID *mem; 
1766             if (ISV86(context))
1767               {
1768                 mem= DOSMEM_GetBlock((DWORD)BX_reg(context)<<4,NULL);
1769             if (mem)
1770                 AX_reg(context) = DOSMEM_MapLinearToDos(mem)>>4;
1771               }
1772             else
1773               {
1774                 mem = (LPVOID)GlobalDOSAlloc16(BX_reg(context)<<4);
1775                 if (mem)
1776                   AX_reg(context) = (DWORD)mem&0xffff;
1777               }
1778             if (!mem)
1779               {
1780                 SET_CFLAG(context);
1781                 AX_reg(context) = 0x0008; /* insufficient memory */
1782                 BX_reg(context) = DOSMEM_Available()>>4;
1783             }
1784         }
1785         break;
1786
1787     case 0x49: /* FREE MEMORY */
1788         TRACE("FREE MEMORY segment %04lX\n", ES_reg(context));
1789         {
1790           BOOL ret;
1791           if (ISV86(context))
1792             ret= DOSMEM_FreeBlock(DOSMEM_MapDosToLinear(ES_reg(context)<<4));
1793           else
1794             {
1795               ret = !GlobalDOSFree16(ES_reg(context));
1796               /* If we don't reset ES_reg, we will fail in the relay code */
1797               ES_reg(context)=ret;
1798             }
1799           if (!ret)
1800             {
1801               TRACE("FREE MEMORY failed\n");
1802             SET_CFLAG(context);
1803             AX_reg(context) = 0x0009; /* memory block address invalid */
1804         }
1805         }
1806         break;
1807
1808     case 0x4a: /* RESIZE MEMORY BLOCK */
1809         TRACE("RESIZE MEMORY segment %04lX to %d paragraphs\n", ES_reg(context), BX_reg(context));
1810         if (!ISV86(context))
1811           FIXME("RESIZE MEMORY probably insufficient implementation. Expect crash soon\n");
1812         {
1813             LPVOID *mem = DOSMEM_ResizeBlock(DOSMEM_MapDosToLinear(ES_reg(context)<<4),
1814                                              BX_reg(context)<<4,NULL);
1815             if (mem)
1816                 AX_reg(context) = DOSMEM_MapLinearToDos(mem)>>4;
1817             else {
1818                 SET_CFLAG(context);
1819                 AX_reg(context) = 0x0008; /* insufficient memory */
1820                 BX_reg(context) = DOSMEM_Available()>>4; /* not quite right */
1821             }
1822         }
1823         break;
1824
1825     case 0x4b: /* "EXEC" - LOAD AND/OR EXECUTE PROGRAM */
1826         TRACE("EXEC %s\n",
1827               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),EDX_reg(context) ));
1828         AX_reg(context) = WinExec16( CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),
1829                                                          EDX_reg(context) ),
1830                                      SW_NORMAL );
1831         if (AX_reg(context) < 32) SET_CFLAG(context);
1832         break;          
1833         
1834     case 0x4c: /* "EXIT" - TERMINATE WITH RETURN CODE */
1835         TRACE("EXIT with return code %d\n",AL_reg(context));
1836         ExitThread( AL_reg(context) );
1837         break;
1838
1839     case 0x4d: /* GET RETURN CODE */
1840         TRACE("GET RETURN CODE (ERRORLEVEL)\n");
1841         AX_reg(context) = 0; /* normal exit */
1842         break;
1843
1844     case 0x4e: /* "FINDFIRST" - FIND FIRST MATCHING FILE */
1845         TRACE("FINDFIRST mask 0x%04x spec %s\n",CX_reg(context),
1846               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)));
1847         if (!INT21_FindFirst(context)) break;
1848         /* fall through */
1849
1850     case 0x4f: /* "FINDNEXT" - FIND NEXT MATCHING FILE */
1851         TRACE("FINDNEXT\n");
1852         if (!INT21_FindNext(context))
1853         {
1854             SetLastError( ERROR_NO_MORE_FILES );
1855             AX_reg(context) = ERROR_NO_MORE_FILES;
1856             SET_CFLAG(context);
1857         }
1858         else AX_reg(context) = 0;  /* OK */
1859         break;
1860     case 0x50: /* SET CURRENT PROCESS ID (SET PSP ADDRESS) */
1861         TRACE("SET CURRENT PROCESS ID (SET PSP ADDRESS)\n");
1862         INT21_SetCurrentPSP(BX_reg(context));
1863         break;
1864     case 0x51: /* GET PSP ADDRESS */
1865         TRACE("GET CURRENT PROCESS ID (GET PSP ADDRESS)\n");
1866         /* FIXME: should we return the original DOS PSP upon */
1867         /*        Windows startup ? */
1868         BX_reg(context) = INT21_GetCurrentPSP();
1869         break;
1870     case 0x62: /* GET PSP ADDRESS */
1871         TRACE("GET CURRENT PSP ADDRESS\n");
1872         /* FIXME: should we return the original DOS PSP upon */
1873         /*        Windows startup ? */
1874         BX_reg(context) = INT21_GetCurrentPSP();
1875         break;
1876
1877     case 0x52: /* "SYSVARS" - GET LIST OF LISTS */
1878         TRACE("SYSVARS - GET LIST OF LISTS\n");
1879         {
1880             ES_reg(context) = ISV86(context) ? HIWORD(DOS_LOLSeg) : LOWORD(DOS_LOLSeg);
1881             BX_reg(context) = FIELD_OFFSET(DOS_LISTOFLISTS, ptr_first_DPB);
1882         }
1883         break;
1884
1885     case 0x54: /* Get Verify Flag */
1886         TRACE("Get Verify Flag - Not Supported\n");
1887         AL_reg(context) = 0x00;  /* pretend we can tell. 00h = off 01h = on */
1888         break;
1889
1890     case 0x56: /* "RENAME" - RENAME FILE */
1891         TRACE("RENAME %s to %s\n",
1892               (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)),
1893               (LPCSTR)CTX_SEG_OFF_TO_LIN(context, ES_reg(context),EDI_reg(context)));
1894         bSetDOSExtendedError = 
1895                 (!MoveFileA( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)),
1896                                CTX_SEG_OFF_TO_LIN(context, ES_reg(context),EDI_reg(context))));
1897         break;
1898
1899     case 0x57: /* FILE DATE AND TIME */
1900         switch (AL_reg(context))
1901         {
1902         case 0x00:  /* Get */
1903             {
1904                 FILETIME filetime;
1905                 TRACE("GET FILE DATE AND TIME for handle %d\n",
1906                       BX_reg(context));
1907                 if (!GetFileTime( FILE_GetHandle(BX_reg(context)), NULL, NULL, &filetime ))
1908                      bSetDOSExtendedError = TRUE;
1909                 else FileTimeToDosDateTime( &filetime, &DX_reg(context),
1910                                             &CX_reg(context) );
1911             }
1912             break;
1913
1914         case 0x01:  /* Set */
1915             {
1916                 FILETIME filetime;
1917                 TRACE("SET FILE DATE AND TIME for handle %d\n",
1918                       BX_reg(context));
1919                 DosDateTimeToFileTime( DX_reg(context), CX_reg(context),
1920                                        &filetime );
1921                 bSetDOSExtendedError = 
1922                         (!SetFileTime( FILE_GetHandle(BX_reg(context)),
1923                                       NULL, NULL, &filetime ));
1924             }
1925             break;
1926         }
1927         break;
1928
1929     case 0x58: /* GET OR SET MEMORY/UMB ALLOCATION STRATEGY */
1930         TRACE("GET OR SET MEMORY/UMB ALLOCATION STRATEGY subfunction %d\n",
1931               AL_reg(context));
1932         switch (AL_reg(context))
1933         {
1934         case 0x00:
1935             AX_reg(context) = 1;
1936             break;
1937         case 0x02:
1938             AX_reg(context) = 0;
1939             break;
1940         case 0x01:
1941         case 0x03:
1942             break;
1943         }
1944         RESET_CFLAG(context);
1945         break;
1946
1947     case 0x5a: /* CREATE TEMPORARY FILE */
1948         TRACE("CREATE TEMPORARY FILE\n");
1949         bSetDOSExtendedError = !INT21_CreateTempFile(context);
1950         break;
1951
1952     case 0x5b: /* CREATE NEW FILE */
1953         TRACE("CREATE NEW FILE 0x%02x for %s\n", CX_reg(context),
1954               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)));
1955         bSetDOSExtendedError = ((AX_reg(context) = 
1956                _lcreat16_uniq( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)),
1957                                CX_reg(context) )) == (WORD)HFILE_ERROR16);
1958         break;
1959
1960     case 0x5d: /* NETWORK */
1961         FIXME("Function 0x%04x not implemented.\n", AX_reg (context));
1962         /* Fix the following while you're at it.  */
1963         SetLastError( ER_NoNetwork );
1964         bSetDOSExtendedError = TRUE;
1965         break;
1966
1967     case 0x5e:
1968         bSetDOSExtendedError = INT21_networkfunc (context);
1969         break;
1970
1971     case 0x5f: /* NETWORK */
1972         switch (AL_reg(context))
1973         {
1974         case 0x07: /* ENABLE DRIVE */
1975             TRACE("ENABLE DRIVE %c:\n",(DL_reg(context)+'A'));
1976             if (!DRIVE_Enable( DL_reg(context) ))
1977             {
1978                 SetLastError( ERROR_INVALID_DRIVE );
1979                 bSetDOSExtendedError = TRUE;
1980             }
1981             break;
1982
1983         case 0x08: /* DISABLE DRIVE */
1984             TRACE("DISABLE DRIVE %c:\n",(DL_reg(context)+'A'));
1985             if (!DRIVE_Disable( DL_reg(context) ))
1986             {
1987                 SetLastError( ERROR_INVALID_DRIVE );
1988                 bSetDOSExtendedError = TRUE;
1989             } 
1990             break;
1991
1992         default:
1993             /* network software not installed */
1994             TRACE("NETWORK function AX=%04x not implemented\n",AX_reg(context));
1995             SetLastError( ER_NoNetwork );
1996             bSetDOSExtendedError = TRUE;
1997             break;
1998         }
1999         break;
2000
2001     case 0x60: /* "TRUENAME" - CANONICALIZE FILENAME OR PATH */
2002         TRACE("TRUENAME %s\n",
2003               (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),ESI_reg(context)));
2004         {
2005             if (!GetFullPathNameA( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
2006                                                         ESI_reg(context)), 128,
2007                                      CTX_SEG_OFF_TO_LIN(context, ES_reg(context),
2008                                                         EDI_reg(context)),NULL))
2009                 bSetDOSExtendedError = TRUE;
2010             else AX_reg(context) = 0;
2011         }
2012         break;
2013
2014     case 0x61: /* UNUSED */
2015     case 0x63: /* misc. language support */
2016         switch (AL_reg(context)) {
2017         case 0x00: /* GET DOUBLE BYTE CHARACTER SET LEAD-BYTE TABLE */
2018             INT21_GetDBCSLeadTable(context);
2019             break;
2020         }
2021         break;
2022     case 0x64: /* OS/2 DOS BOX */
2023         INT_BARF( context, 0x21 );
2024         SET_CFLAG(context);
2025         break;
2026
2027     case 0x65:{/* GET EXTENDED COUNTRY INFORMATION */
2028         BYTE    *dataptr=CTX_SEG_OFF_TO_LIN(context, ES_reg(context),EDI_reg(context));
2029         TRACE("GET EXTENDED COUNTRY INFORMATION code page %d country %d\n",
2030               BX_reg(context), DX_reg(context));
2031         switch (AL_reg(context)) {
2032         case 0x01:
2033             TRACE("\tget general internationalization info\n");
2034             dataptr[0] = 0x1;
2035             *(WORD*)(dataptr+1) = 41;
2036             *(WORD*)(dataptr+3) = GetSystemDefaultLangID();
2037             *(WORD*)(dataptr+5) = CodePage;
2038             *(DWORD*)(dataptr+0x19) = 0; /* FIXME: ptr to case map routine */
2039             break;
2040         case 0x06:
2041             TRACE("\tget pointer to collating sequence table\n");
2042             dataptr[0] = 0x06;
2043             *(DWORD*)(dataptr+1) = MAKELONG(DOSMEM_CollateTable & 0xFFFF,DOSMEM_AllocSelector(DOSMEM_CollateTable>>16));
2044             CX_reg(context)         = 258;/*FIXME: size of table?*/
2045             break;
2046         case 0x20:
2047             TRACE("\tConvert char to uppercase\n");
2048             DL_reg(context) = toupper(DL_reg(context));
2049             break;
2050         case 0x21:
2051             TRACE("\tconvert string to uppercase with length\n");
2052             CharUpperBuffA( (LPSTR)CTX_SEG_OFF_TO_LIN(context,DS_reg(context),EDX_reg(context)),
2053                             CX_reg(context) );
2054             break;
2055         case 0x22:            
2056             TRACE("\tConvert ASCIIZ string to uppercase\n");
2057             CharUpperA( (LPSTR)CTX_SEG_OFF_TO_LIN(context,DS_reg(context),EDX_reg(context)) );
2058             break;    
2059         default:
2060             TRACE("\tunimplemented function %d\n",AL_reg(context));
2061             INT_BARF( context, 0x21 );
2062             SET_CFLAG(context);
2063             break;
2064         }
2065         break;
2066     }
2067     case 0x66: /* GLOBAL CODE PAGE TABLE */
2068         switch (AL_reg(context))
2069         {
2070         case 0x01:
2071             TRACE("GET GLOBAL CODE PAGE TABLE\n");
2072             DX_reg(context) = BX_reg(context) = CodePage;
2073             RESET_CFLAG(context);
2074             break;                      
2075         case 0x02: 
2076             TRACE("SET GLOBAL CODE PAGE TABLE active page %d system page %d\n",
2077                   BX_reg(context),DX_reg(context));
2078             CodePage = BX_reg(context);
2079             RESET_CFLAG(context);
2080             break;
2081         }
2082         break;
2083
2084     case 0x67: /* SET HANDLE COUNT */
2085         TRACE("SET HANDLE COUNT to %d\n",BX_reg(context) );
2086         SetHandleCount16( BX_reg(context) );
2087         if (GetLastError()) bSetDOSExtendedError = TRUE;
2088         break;
2089
2090     case 0x68: /* "FFLUSH" - COMMIT FILE */
2091     case 0x6a: /* COMMIT FILE */
2092         TRACE("FFLUSH/COMMIT handle %d\n",BX_reg(context));
2093         bSetDOSExtendedError = (!FlushFileBuffers( FILE_GetHandle(BX_reg(context)) ));
2094         break;          
2095         
2096     case 0x69: /* DISK SERIAL NUMBER */
2097         switch (AL_reg(context))
2098         {
2099         case 0x00:
2100             TRACE("GET DISK SERIAL NUMBER for drive %s\n",
2101                   INT21_DriveName(BL_reg(context)));
2102             if (!INT21_GetDiskSerialNumber(context)) bSetDOSExtendedError = TRUE;
2103             else AX_reg(context) = 0;
2104             break;
2105
2106         case 0x01:
2107             TRACE("SET DISK SERIAL NUMBER for drive %s\n",
2108                   INT21_DriveName(BL_reg(context)));
2109             if (!INT21_SetDiskSerialNumber(context)) bSetDOSExtendedError = TRUE;
2110             else AX_reg(context) = 1;
2111             break;
2112         }
2113         break;
2114     
2115     case 0x6C: /* Extended Open/Create*/
2116         TRACE("EXTENDED OPEN/CREATE %s\n",
2117               (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDI_reg(context)));
2118         bSetDOSExtendedError = INT21_ExtendedOpenCreateFile(context);
2119         break;
2120         
2121     case 0x71: /* MS-DOS 7 (Windows95) - LONG FILENAME FUNCTIONS */
2122         if ((GetVersion()&0xC0000004)!=0xC0000004) {
2123             /* not supported on anything but Win95 */
2124             TRACE("LONG FILENAME functions supported only by win95\n");
2125             SET_CFLAG(context);
2126             AL_reg(context) = 0;
2127         } else
2128         switch(AL_reg(context))
2129         {
2130         case 0x39:  /* Create directory */
2131             TRACE("LONG FILENAME - MAKE DIRECTORY %s\n",
2132                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),EDX_reg(context)));
2133             bSetDOSExtendedError = (!CreateDirectoryA( 
2134                                         CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),
2135                                                   EDX_reg(context) ), NULL));
2136             /* FIXME: CreateDirectory's LastErrors will clash with the ones
2137              * used by dos. AH=39 only returns 3 (path not found) and 5 (access
2138              * denied), while CreateDirectory return several ones. remap some of
2139              * them. -Marcus
2140              */
2141             if (bSetDOSExtendedError) {
2142                     switch (GetLastError()) {
2143                     case ERROR_ALREADY_EXISTS:
2144                     case ERROR_FILENAME_EXCED_RANGE:
2145                     case ERROR_DISK_FULL:
2146                             SetLastError(ERROR_ACCESS_DENIED);
2147                             break;
2148                     default: break;
2149                     }
2150             }
2151             break;
2152         case 0x3a:  /* Remove directory */
2153             TRACE("LONG FILENAME - REMOVE DIRECTORY %s\n",
2154                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),EDX_reg(context)));
2155             bSetDOSExtendedError = (!RemoveDirectoryA( 
2156                                         CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),
2157                                                         EDX_reg(context) )));
2158             break;
2159         case 0x43:  /* Get/Set file attributes */
2160           TRACE("LONG FILENAME -EXTENDED GET/SET FILE ATTRIBUTES %s\n",
2161                 (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),EDX_reg(context)));
2162         switch (BL_reg(context))
2163         {
2164         case 0x00: /* Get file attributes */
2165             TRACE("\tretrieve attributes\n");
2166             CX_reg(context) = (WORD)GetFileAttributesA(
2167                                           CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
2168                                                              EDX_reg(context)));
2169             if (CX_reg(context) == 0xffff) bSetDOSExtendedError = TRUE;
2170             break;
2171         case 0x01:
2172             TRACE("\tset attributes 0x%04x\n",CX_reg(context));
2173             bSetDOSExtendedError = (!SetFileAttributesA( 
2174                                         CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
2175                                                            EDX_reg(context)),
2176                                         CX_reg(context)  ) );
2177             break;
2178         default:
2179           FIXME("Unimplemented long file name function:\n");
2180           INT_BARF( context, 0x21 );
2181           SET_CFLAG(context);
2182           AL_reg(context) = 0;
2183           break;
2184         }
2185         break;
2186         case 0x47:  /* Get current directory */
2187             TRACE(" LONG FILENAME - GET CURRENT DIRECTORY for drive %s\n",
2188                   INT21_DriveName(DL_reg(context)));
2189             bSetDOSExtendedError = !INT21_GetCurrentDirectory(context);
2190             break;
2191
2192         case 0x4e:  /* Find first file */
2193             TRACE(" LONG FILENAME - FIND FIRST MATCHING FILE for %s\n",
2194                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)));
2195             /* FIXME: use attributes in CX */
2196             if ((AX_reg(context) = FindFirstFile16(
2197                    CTX_SEG_OFF_TO_LIN(context, DS_reg(context),EDX_reg(context)),
2198                    (WIN32_FIND_DATAA *)CTX_SEG_OFF_TO_LIN(context, ES_reg(context),
2199                                                             EDI_reg(context))))
2200                 == INVALID_HANDLE_VALUE16)
2201                 bSetDOSExtendedError = TRUE;
2202             break;
2203         case 0x4f:  /* Find next file */
2204             TRACE("LONG FILENAME - FIND NEXT MATCHING FILE for handle %d\n",
2205                   BX_reg(context));
2206             if (!FindNextFile16( BX_reg(context),
2207                     (WIN32_FIND_DATAA *)CTX_SEG_OFF_TO_LIN(context, ES_reg(context),
2208                                                              EDI_reg(context))))
2209                 bSetDOSExtendedError = TRUE;
2210             break;
2211         case 0xa0:
2212             {
2213                 LPCSTR driveroot = (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context),EDX_reg(context));
2214                 LPSTR buffer = (LPSTR)CTX_SEG_OFF_TO_LIN(context,  ES_reg(context),EDI_reg(context));
2215                 int drive;
2216                 UINT flags;
2217
2218                 TRACE("LONG FILENAME - GET VOLUME INFORMATION for drive having root dir '%s'.\n", driveroot);
2219                 AX_reg(context) = 0;
2220                 if (!driveroot)
2221                 {
2222                     INT_BARF( context, 0x21 );
2223                     SET_CFLAG(context);
2224                     break;
2225                 }
2226                 drive = toupper(driveroot[0]) - 'A';
2227                 flags = DRIVE_GetFlags(toupper(driveroot[0]) - 'A');
2228                 BX_reg(context) = 0x4000; /* support for LFN functions */
2229                 if (flags & DRIVE_CASE_SENSITIVE)
2230                         BX_reg(context) |= 1;
2231                 if (flags & DRIVE_CASE_PRESERVING)
2232                         BX_reg(context) |= 2;
2233                 /***** FIXME: not supported yet (needed ?)
2234                 if (flags & DRIVE_UNICODE)
2235                         BX_reg(context) |= 4;
2236                 if (flags & DRIVE_COMPRESSED)
2237                         BX_reg(context) |= 0x8000;
2238                 *****/
2239                 CX_reg(context) = (flags & DRIVE_SHORT_NAMES) ? 11 : 255; /* FIXME: 12 ? */
2240                 DX_reg(context) = MAX_PATH; /* FIXME: which len if DRIVE_SHORT_NAMES ? */
2241                 if (DRIVE_GetType(drive) == TYPE_CDROM)
2242                         /* valid for data _and_ audio */
2243                         strcpy(buffer, "CDFS"); /* FIXME: fail if no CD in drive */
2244                 else
2245                         strcpy(buffer, "FAT");
2246             }
2247             break;
2248         case 0xa1:  /* Find close */
2249             TRACE("LONG FILENAME - FINDCLOSE for handle %d\n",
2250                   BX_reg(context));
2251             bSetDOSExtendedError = (!FindClose16( BX_reg(context) ));
2252             break;
2253         case 0x60:  
2254           switch(CL_reg(context))
2255           {
2256             case 0x01:  /*Get short filename or path */
2257               if (!GetShortPathNameA
2258                   ( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
2259                                        ESI_reg(context)),
2260                     CTX_SEG_OFF_TO_LIN(context, ES_reg(context),
2261                                        EDI_reg(context)), 67))
2262                 bSetDOSExtendedError = TRUE;
2263               else AX_reg(context) = 0;
2264               break;
2265             case 0x02:  /*Get canonical long filename or path */
2266               if (!GetFullPathNameA
2267                   ( CTX_SEG_OFF_TO_LIN(context, DS_reg(context),
2268                                        ESI_reg(context)), 128,
2269                     CTX_SEG_OFF_TO_LIN(context, ES_reg(context),
2270                                        EDI_reg(context)),NULL))
2271                 bSetDOSExtendedError = TRUE;
2272               else AX_reg(context) = 0;
2273               break;
2274             default:
2275               FIXME("Unimplemented long file name function:\n");
2276               INT_BARF( context, 0x21 );
2277               SET_CFLAG(context);
2278               AL_reg(context) = 0;
2279               break;
2280           }
2281             break;
2282         case 0x6c:  /* Create or open file */
2283             TRACE("LONG FILENAME - CREATE OR OPEN FILE %s\n",
2284                  (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), ESI_reg(context))); 
2285           /* translate Dos 7 action to Dos 6 action */
2286             bSetDOSExtendedError = INT21_ExtendedOpenCreateFile(context);
2287             break;
2288
2289         case 0x3b:  /* Change directory */
2290             TRACE("LONG FILENAME - CHANGE DIRECTORY %s\n",
2291                  (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context))); 
2292             if (!SetCurrentDirectoryA(CTX_SEG_OFF_TO_LIN(context, 
2293                                                 DS_reg(context),
2294                                                 EDX_reg(context)
2295                                         ))
2296             ) {
2297                 SET_CFLAG(context);
2298                 AL_reg(context) = GetLastError();
2299             }
2300             break;
2301         case 0x41:  /* Delete file */
2302             TRACE("LONG FILENAME - DELETE FILE %s\n",
2303                  (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context))); 
2304             if (!DeleteFileA(CTX_SEG_OFF_TO_LIN(context, 
2305                                         DS_reg(context),
2306                                         EDX_reg(context))
2307             )) {
2308                 SET_CFLAG(context);
2309                 AL_reg(context) = GetLastError();
2310             }
2311             break;
2312         case 0x56:  /* Move (rename) file */
2313             FIXME("LONG FILENAME - RENAME FILE %s to %s stub\n",
2314                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  DS_reg(context), EDX_reg(context)),
2315                   (LPCSTR)CTX_SEG_OFF_TO_LIN(context,  ES_reg(context), EDI_reg(context))); 
2316         default:
2317             FIXME("Unimplemented long file name function:\n");
2318             INT_BARF( context, 0x21 );
2319             SET_CFLAG(context);
2320             AL_reg(context) = 0;
2321             break;
2322         }
2323         break;
2324
2325     case 0x70: /* MS-DOS 7 (Windows95) - ??? (country-specific?)*/
2326     case 0x72: /* MS-DOS 7 (Windows95) - ??? */
2327         TRACE("windows95 function AX %04x\n",
2328                     AX_reg(context));
2329         WARN("        returning unimplemented\n");
2330         SET_CFLAG(context);
2331         AL_reg(context) = 0;
2332         break;
2333
2334     case 0x73: /* MULTIPLEXED: Win95 OSR2/Win98 FAT32 calls */
2335         TRACE("windows95 function AX %04x\n",
2336                     AX_reg(context));
2337
2338         switch (AL_reg(context))
2339                 {
2340                 case 0x02:      /* Get Extended Drive Parameter Block for specific drive */
2341                                 /* ES:DI points to word with length of data (should be 0x3d) */
2342                         {
2343                                 WORD *buffer;
2344                                 struct EDPB *edpb;
2345                             DWORD cluster_sectors, sector_bytes, free_clusters, total_clusters;
2346                             char root[] = "A:\\";
2347
2348                                 buffer = (WORD *)CTX_SEG_OFF_TO_LIN(context, ES_reg(context), EDI_reg(context));
2349
2350                                 TRACE("Get Extended DPB: linear buffer address is %p\n", buffer);
2351
2352                                 /* validate passed-in buffer lengths */
2353                                 if ((*buffer != 0x3d) || (ECX_reg(context) != 0x3f))
2354                                 {
2355                                         WARN("Get Extended DPB: buffer lengths incorrect\n");
2356                                         WARN("CX = %lx, buffer[0] = %x\n", ECX_reg(context), *buffer);
2357                                         SET_CFLAG(context);
2358                                         AL_reg(context) = 0x18;         /* bad buffer length */
2359                                 }
2360
2361                                 /* buffer checks out */
2362                                 buffer++;               /* skip over length word now */
2363                                 if (FillInDrivePB( DX_reg(context) ) )
2364                                 {
2365                                         edpb = (struct EDPB *)buffer;
2366
2367                                         /* copy down the old-style DPB portion first */
2368                                         memcpy(&edpb->dpb, &heap->dpb, sizeof(struct DPB));
2369
2370                                         /* now fill in the extended entries */
2371                                         edpb->edpb_flags = 0;
2372                                         edpb->next_edpb = 0;
2373                                         edpb->free_cluster = edpb->free_cluster2 = 0;
2374                                         
2375                                         /* determine free disk space */
2376                                     *root += DOS_GET_DRIVE( DX_reg(context) );
2377                                     GetDiskFreeSpaceA( root, &cluster_sectors, &sector_bytes,
2378                               &free_clusters, &total_clusters );
2379
2380                                         edpb->clusters_free = (free_clusters&0xffff);
2381
2382                                         edpb->clusters_free_hi = free_clusters >> 16;
2383                                         edpb->mirroring_flags = 0;
2384                                         edpb->info_sector = 0xffff;
2385                                         edpb->spare_boot_sector = 0xffff;
2386                                         edpb->first_cluster = 0;
2387                                         edpb->max_cluster = total_clusters;
2388                                         edpb->fat_clusters = 32;        /* made-up value */
2389                                         edpb->root_cluster = 0;
2390                                 
2391                                         RESET_CFLAG(context);   /* clear carry */
2392                                         AX_reg(context) = 0;    
2393                                 }
2394                                 else
2395                                 {
2396                                 AX_reg(context) = 0x00ff;
2397                                         SET_CFLAG(context);
2398                                 }
2399                         }
2400                         break;
2401
2402                 case 0x03:      /* Get Extended free space on drive */
2403                 case 0x04:  /* Set DPB for formatting */
2404                 case 0x05:  /* extended absolute disk read/write */
2405                         FIXME("Unimplemented FAT32 int32 function %04x\n", AX_reg(context));
2406                         SET_CFLAG(context);
2407                         AL_reg(context) = 0;
2408                         break;
2409                 }
2410                 
2411                 break;
2412
2413
2414     case 0xdc: /* CONNECTION SERVICES - GET CONNECTION NUMBER */
2415     case 0xea: /* NOVELL NETWARE - RETURN SHELL VERSION */
2416         break;
2417
2418     default:
2419         INT_BARF( context, 0x21 );
2420         break;
2421
2422     } /* END OF SWITCH */
2423
2424     if( bSetDOSExtendedError )          /* set general error condition */
2425     {   
2426         AX_reg(context) = GetLastError();
2427         SET_CFLAG(context);
2428     }
2429
2430     if ((EFL_reg(context) & 0x0001))
2431         TRACE("failed, error 0x%04lx\n", GetLastError() );
2432  
2433     TRACE("returning: AX=%04x BX=%04x CX=%04x DX=%04x "
2434                  "SI=%04x DI=%04x DS=%04x ES=%04x EFL=%08lx\n",
2435                  AX_reg(context), BX_reg(context), CX_reg(context),
2436                  DX_reg(context), SI_reg(context), DI_reg(context),
2437                  (WORD)DS_reg(context), (WORD)ES_reg(context),
2438                  EFL_reg(context));
2439 }
2440
2441 /***********************************************************************
2442  *              GetSetKernelDOSProc
2443  */
2444 FARPROC16 WINAPI GetSetKernelDOSProc16(FARPROC16 DosProc)
2445 {
2446         FIXME("(DosProc=0x%08x): stub\n", (UINT)DosProc);
2447         return NULL;
2448 }
2449