Use DrawFrameControl instead of bitmaps in certain cases.
[wine] / dlls / winedos / module.c
1 /*
2  * DOS (MZ) loader
3  *
4  * Copyright 1998 Ove Kåven
5  *
6  * This code hasn't been completely cleaned up yet.
7  */
8
9 #include "config.h"
10
11 #include <stdio.h>
12 #include <stdlib.h>
13 #include <string.h>
14 #include <errno.h>
15 #include <fcntl.h>
16 #include <signal.h>
17 #include <unistd.h>
18 #include <sys/types.h>
19 #include <sys/stat.h>
20 #include <sys/time.h>
21 #include "windef.h"
22 #include "wine/winbase16.h"
23 #include "winerror.h"
24 #include "module.h"
25 #include "task.h"
26 #include "file.h"
27 #include "miscemu.h"
28 #include "debugtools.h"
29 #include "dosexe.h"
30 #include "../../loader/dos/dosmod.h"
31 #include "options.h"
32 #include "vga.h"
33
34 DEFAULT_DEBUG_CHANNEL(module);
35
36 #ifdef MZ_SUPPORTED
37
38 #ifdef HAVE_SYS_MMAN_H
39 # include <sys/mman.h>
40 #endif
41
42 /* define this to try mapping through /proc/pid/mem instead of a temp file,
43    but Linus doesn't like mmapping /proc/pid/mem, so it doesn't work for me */
44 #undef MZ_MAPSELF
45
46 #define BIOS_DATA_SEGMENT 0x40
47 #define PSP_SIZE 0x10
48
49 #define SEG16(ptr,seg) ((LPVOID)((BYTE*)ptr+((DWORD)(seg)<<4)))
50 #define SEGPTR16(ptr,segptr) ((LPVOID)((BYTE*)ptr+((DWORD)SELECTOROF(segptr)<<4)+OFFSETOF(segptr)))
51
52 /* structures for EXEC */
53
54 typedef struct {
55   WORD env_seg;
56   DWORD cmdline WINE_PACKED;
57   DWORD fcb1 WINE_PACKED;
58   DWORD fcb2 WINE_PACKED;
59   WORD init_sp;
60   WORD init_ss;
61   WORD init_ip;
62   WORD init_cs;
63 } ExecBlock;
64
65 typedef struct {
66   WORD load_seg;
67   WORD rel_seg;
68 } OverlayBlock;
69
70 /* global variables */
71
72 static WORD init_cs,init_ip,init_ss,init_sp;
73 static char mm_name[128];
74
75 int read_pipe = -1, write_pipe = -1;
76 HANDLE hReadPipe, hWritePipe;
77 pid_t dosmod_pid;
78
79 static void MZ_Launch(void);
80 static BOOL MZ_InitTask(void);
81 static void MZ_KillTask(void);
82
83 static void MZ_CreatePSP( LPVOID lpPSP, WORD env, WORD par )
84 {
85   PDB16*psp=lpPSP;
86
87   psp->int20=0x20CD; /* int 20 */
88   /* some programs use this to calculate how much memory they need */
89   psp->nextParagraph=0x9FFF; /* FIXME: use a real value */
90   /* FIXME: dispatcher */
91   psp->savedint22 = DOSVM_GetRMHandler(0x22);
92   psp->savedint23 = DOSVM_GetRMHandler(0x23);
93   psp->savedint24 = DOSVM_GetRMHandler(0x24);
94   psp->parentPSP=par;
95   psp->environment=env;
96   /* FIXME: more PSP stuff */
97 }
98
99 static void MZ_FillPSP( LPVOID lpPSP, LPCSTR cmdline )
100 {
101  PDB16*psp=lpPSP;
102  const char*cmd=cmdline?strchr(cmdline,' '):NULL;
103
104  /* copy parameters */
105  if (cmd) {
106 #if 0
107   /* command.com doesn't do this */
108   while (*cmd == ' ') cmd++;
109 #endif
110   psp->cmdLine[0]=strlen(cmd);
111   strcpy(psp->cmdLine+1,cmd);
112   psp->cmdLine[psp->cmdLine[0]+1]='\r';
113  } else psp->cmdLine[1]='\r';
114  /* FIXME: more PSP stuff */
115 }
116
117 /* default INT 08 handler: increases timer tick counter but not much more */
118 static char int08[]={
119  0xCD,0x1C,           /* int $0x1c */
120  0x50,                /* pushw %ax */
121  0x1E,                /* pushw %ds */
122  0xB8,0x40,0x00,      /* movw $0x40,%ax */
123  0x8E,0xD8,           /* movw %ax,%ds */
124 #if 0
125  0x83,0x06,0x6C,0x00,0x01, /* addw $1,(0x6c) */
126  0x83,0x16,0x6E,0x00,0x00, /* adcw $0,(0x6e) */
127 #else
128  0x66,0xFF,0x06,0x6C,0x00, /* incl (0x6c) */
129 #endif
130  0xB0,0x20,           /* movb $0x20,%al */
131  0xE6,0x20,           /* outb %al,$0x20 */
132  0x1F,                /* popw %ax */
133  0x58,                /* popw %ax */
134  0xCF                 /* iret */
135 };
136
137 static void MZ_InitHandlers(void)
138 {
139  WORD seg;
140  LPBYTE start=DOSMEM_GetBlock(sizeof(int08),&seg);
141  memcpy(start,int08,sizeof(int08));
142 /* INT 08: point it at our tick-incrementing handler */
143  ((SEGPTR*)0)[0x08]=MAKESEGPTR(seg,0);
144 /* INT 1C: just point it to IRET, we don't want to handle it ourselves */
145  ((SEGPTR*)0)[0x1C]=MAKESEGPTR(seg,sizeof(int08)-1);
146 }
147
148 static WORD MZ_InitEnvironment( LPCSTR env, LPCSTR name )
149 {
150  unsigned sz=0;
151  WORD seg;
152  LPSTR envblk;
153
154  if (env) {
155   /* get size of environment block */
156   while (env[sz++]) sz+=strlen(env+sz)+1;
157  } else sz++;
158  /* allocate it */
159  envblk=DOSMEM_GetBlock(sz+sizeof(WORD)+strlen(name)+1,&seg);
160  /* fill it */
161  if (env) {
162   memcpy(envblk,env,sz);
163  } else envblk[0]=0;
164  /* DOS 3.x: the block contains 1 additional string */
165  *(WORD*)(envblk+sz)=1;
166  /* being the program name itself */
167  strcpy(envblk+sz+sizeof(WORD),name);
168  return seg;
169 }
170
171 static BOOL MZ_InitMemory(void)
172 {
173     int mm_fd;
174     void *img_base;
175
176     /* allocate 1MB+64K shared memory */
177     tmpnam(mm_name);
178     /* strcpy(mm_name,"/tmp/mydosimage"); */
179     mm_fd = open(mm_name,O_RDWR|O_CREAT /* |O_TRUNC */,S_IRUSR|S_IWUSR);
180     if (mm_fd < 0) ERR("file %s could not be opened\n",mm_name);
181     /* fill the file with the DOS memory */
182     if (write( mm_fd, NULL, 0x110000 ) != 0x110000) ERR("cannot write DOS mem\n");
183     /* map it in */
184     img_base = mmap(NULL,0x110000,PROT_READ|PROT_WRITE|PROT_EXEC,MAP_SHARED|MAP_FIXED,mm_fd,0);
185     close( mm_fd );
186
187     if (img_base)
188     {
189         ERR("could not map shared memory, error=%s\n",strerror(errno));
190         return FALSE;
191     }
192     MZ_InitHandlers();
193     return TRUE;
194 }
195
196 static BOOL MZ_DoLoadImage( HANDLE hFile, LPCSTR filename, OverlayBlock *oblk )
197 {
198   IMAGE_DOS_HEADER mz_header;
199   DWORD image_start,image_size,min_size,max_size,avail;
200   BYTE*psp_start,*load_start,*oldenv;
201   int x, old_com=0, alloc;
202   SEGPTR reloc;
203   WORD env_seg, load_seg, rel_seg, oldpsp_seg;
204   DWORD len;
205
206   if (DOSVM_psp) {
207     /* DOS process already running, inherit from it */
208     PDB16* par_psp = (PDB16*)((DWORD)DOSVM_psp << 4);
209     alloc=0;
210     oldenv = (LPBYTE)((DWORD)par_psp->environment << 4);
211     oldpsp_seg = DOSVM_psp;
212   } else {
213     /* allocate new DOS process, inheriting from Wine environment */
214     alloc=1;
215     oldenv = GetEnvironmentStringsA();
216     oldpsp_seg = 0;
217   }
218
219  SetFilePointer(hFile,0,NULL,FILE_BEGIN);
220  if (   !ReadFile(hFile,&mz_header,sizeof(mz_header),&len,NULL)
221      || len != sizeof(mz_header) 
222      || mz_header.e_magic != IMAGE_DOS_SIGNATURE) {
223   char *p = strrchr( filename, '.' );
224   if (!p || strcasecmp( p, ".com" ))  /* check for .COM extension */
225   {
226       SetLastError(ERROR_BAD_FORMAT);
227       goto load_error;
228   }
229   old_com=1; /* assume .COM file */
230   image_start=0;
231   image_size=GetFileSize(hFile,NULL);
232   min_size=0x10000; max_size=0x100000;
233   mz_header.e_crlc=0;
234   mz_header.e_ss=0; mz_header.e_sp=0xFFFE;
235   mz_header.e_cs=0; mz_header.e_ip=0x100;
236  } else {
237   /* calculate load size */
238   image_start=mz_header.e_cparhdr<<4;
239   image_size=mz_header.e_cp<<9; /* pages are 512 bytes */
240   if ((mz_header.e_cblp!=0)&&(mz_header.e_cblp!=4)) image_size-=512-mz_header.e_cblp;
241   image_size-=image_start;
242   min_size=image_size+((DWORD)mz_header.e_minalloc<<4)+(PSP_SIZE<<4);
243   max_size=image_size+((DWORD)mz_header.e_maxalloc<<4)+(PSP_SIZE<<4);
244  }
245
246   if (alloc) MZ_InitMemory();
247
248   if (oblk) {
249     /* load overlay into preallocated memory */
250     load_seg=oblk->load_seg;
251     rel_seg=oblk->rel_seg;
252     load_start=(LPBYTE)((DWORD)load_seg<<4);
253   } else {
254     /* allocate environment block */
255     env_seg=MZ_InitEnvironment(oldenv, filename);
256
257     /* allocate memory for the executable */
258     TRACE("Allocating DOS memory (min=%ld, max=%ld)\n",min_size,max_size);
259     avail=DOSMEM_Available();
260     if (avail<min_size) {
261       ERR("insufficient DOS memory\n");
262       SetLastError(ERROR_NOT_ENOUGH_MEMORY);
263       goto load_error;
264     }
265     if (avail>max_size) avail=max_size;
266     psp_start=DOSMEM_GetBlock(avail,&DOSVM_psp);
267     if (!psp_start) {
268       ERR("error allocating DOS memory\n");
269       SetLastError(ERROR_NOT_ENOUGH_MEMORY);
270       goto load_error;
271     }
272     load_seg=DOSVM_psp+(old_com?0:PSP_SIZE);
273     rel_seg=load_seg;
274     load_start=psp_start+(PSP_SIZE<<4);
275     MZ_CreatePSP(psp_start, env_seg, oldpsp_seg);
276   }
277
278  /* load executable image */
279  TRACE("loading DOS %s image, %08lx bytes\n",old_com?"COM":"EXE",image_size);
280  SetFilePointer(hFile,image_start,NULL,FILE_BEGIN);
281  if (!ReadFile(hFile,load_start,image_size,&len,NULL) || len != image_size) {
282   SetLastError(ERROR_BAD_FORMAT);
283   goto load_error;
284  }
285
286  if (mz_header.e_crlc) {
287   /* load relocation table */
288   TRACE("loading DOS EXE relocation table, %d entries\n",mz_header.e_crlc);
289   /* FIXME: is this too slow without read buffering? */
290   SetFilePointer(hFile,mz_header.e_lfarlc,NULL,FILE_BEGIN);
291   for (x=0; x<mz_header.e_crlc; x++) {
292    if (!ReadFile(hFile,&reloc,sizeof(reloc),&len,NULL) || len != sizeof(reloc)) {
293     SetLastError(ERROR_BAD_FORMAT);
294     goto load_error;
295    }
296    *(WORD*)SEGPTR16(load_start,reloc)+=rel_seg;
297   }
298  }
299
300   if (!oblk) {
301     init_cs = load_seg+mz_header.e_cs;
302     init_ip = mz_header.e_ip;
303     init_ss = load_seg+mz_header.e_ss;
304     init_sp = mz_header.e_sp;
305
306     TRACE("entry point: %04x:%04x\n",init_cs,init_ip);
307   }
308
309   if (alloc && !MZ_InitTask()) {
310     MZ_KillTask();
311     SetLastError(ERROR_GEN_FAILURE);
312     return FALSE;
313   }
314
315   return TRUE;
316
317 load_error:
318   DOSVM_psp = oldpsp_seg;
319   if (alloc) {
320     if (mm_name[0]!=0) unlink(mm_name);
321   }
322
323   return FALSE;
324 }
325
326 /***********************************************************************
327  *              LoadDosExe (WINEDOS.@)
328  */
329 void WINAPI MZ_LoadImage( LPCSTR filename, HANDLE hFile )
330 {
331     if (MZ_DoLoadImage( hFile, filename, NULL )) MZ_Launch();
332 }
333
334 /***********************************************************************
335  *              MZ_Exec
336  */
337 BOOL WINAPI MZ_Exec( CONTEXT86 *context, LPCSTR filename, BYTE func, LPVOID paramblk )
338 {
339   /* this may only be called from existing DOS processes
340    * (i.e. one DOS app spawning another) */
341   /* FIXME: do we want to check binary type first, to check
342    * whether it's a NE/PE executable? */
343   HFILE hFile = CreateFileA( filename, GENERIC_READ, FILE_SHARE_READ,
344                              NULL, OPEN_EXISTING, 0, 0);
345   BOOL ret = FALSE;
346   if (hFile == INVALID_HANDLE_VALUE) return FALSE;
347   switch (func) {
348   case 0: /* load and execute */
349   case 1: /* load but don't execute */
350     {
351       /* save current process's return SS:SP now */
352       LPBYTE psp_start = (LPBYTE)((DWORD)DOSVM_psp << 4);
353       PDB16 *psp = (PDB16 *)psp_start;
354       psp->saveStack = (DWORD)MAKESEGPTR(context->SegSs, LOWORD(context->Esp));
355     }
356     ret = MZ_DoLoadImage( hFile, filename, NULL );
357     if (ret) {
358       /* MZ_LoadImage created a new PSP and loaded new values into it,
359        * let's work on the new values now */
360       LPBYTE psp_start = (LPBYTE)((DWORD)DOSVM_psp << 4);
361       ExecBlock *blk = (ExecBlock *)paramblk;
362       MZ_FillPSP(psp_start, DOSMEM_MapRealToLinear(blk->cmdline));
363       /* the lame MS-DOS engineers decided that the return address should be in int22 */
364       DOSVM_SetRMHandler(0x22, (FARPROC16)MAKESEGPTR(context->SegCs, LOWORD(context->Eip)));
365       if (func) {
366         /* don't execute, just return startup state */
367         blk->init_cs = init_cs;
368         blk->init_ip = init_ip;
369         blk->init_ss = init_ss;
370         blk->init_sp = init_sp;
371       } else {
372         /* execute by making us return to new process */
373         context->SegCs = init_cs;
374         context->Eip   = init_ip;
375         context->SegSs = init_ss;
376         context->Esp   = init_sp;
377         context->SegDs = DOSVM_psp;
378         context->SegEs = DOSVM_psp;
379         context->Eax   = 0;
380       }
381     }
382     break;
383   case 3: /* load overlay */
384     {
385       OverlayBlock *blk = (OverlayBlock *)paramblk;
386       ret = MZ_DoLoadImage( hFile, filename, blk );
387     }
388     break;
389   default:
390     FIXME("EXEC load type %d not implemented\n", func);
391     SetLastError(ERROR_INVALID_FUNCTION);
392     break;
393   }
394   CloseHandle(hFile);
395   return ret;
396 }
397
398 /***********************************************************************
399  *              MZ_AllocDPMITask
400  */
401 void WINAPI MZ_AllocDPMITask( void )
402 {
403     MZ_InitMemory();
404     MZ_InitTask();
405 }
406
407 /***********************************************************************
408  *              MZ_RunInThread
409  */
410 void WINAPI MZ_RunInThread( PAPCFUNC proc, ULONG_PTR arg )
411 {
412   proc(arg);
413 }
414
415 static void MZ_InitTimer( int ver )
416 {
417  if (ver<1) {
418   /* can't make timer ticks */
419  } else {
420   int func;
421   struct timeval tim;
422
423   /* start dosmod timer at 55ms (18.2Hz) */
424   func=DOSMOD_SET_TIMER;
425   tim.tv_sec=0; tim.tv_usec=54925;
426   write(write_pipe,&func,sizeof(func));
427   write(write_pipe,&tim,sizeof(tim));
428  }
429 }
430
431 static BOOL MZ_InitTask(void)
432 {
433   int write_fd[2],x_fd;
434   pid_t child;
435   char path[256],*fpath;
436
437   /* create pipes */
438   if (!CreatePipe(&hReadPipe,&hWritePipe,NULL,0)) return FALSE;
439   if (pipe(write_fd)<0) {
440     CloseHandle(hReadPipe);
441     CloseHandle(hWritePipe);
442     return FALSE;
443   }
444
445   read_pipe = FILE_GetUnixHandle( hReadPipe, GENERIC_READ );
446   x_fd = FILE_GetUnixHandle( hWritePipe, GENERIC_WRITE );
447
448   TRACE("win32 pipe: read=%d, write=%d, unix pipe: read=%d, write=%d\n",
449         hReadPipe,hWritePipe,read_pipe,x_fd);
450   TRACE("outbound unix pipe: read=%d, write=%d, pid=%d\n",write_fd[0],write_fd[1],getpid());
451
452   write_pipe=write_fd[1];
453
454   TRACE("Loading DOS VM support module\n");
455   if ((child=fork())<0) {
456     close(write_fd[0]);
457     close(read_pipe);
458     close(write_pipe);
459     close(x_fd);
460     CloseHandle(hReadPipe);
461     CloseHandle(hWritePipe);
462     return FALSE;
463   }
464  if (child!=0) {
465   /* parent process */
466   int ret;
467
468   close(write_fd[0]);
469   close(x_fd);
470   dosmod_pid = child;
471   /* wait for child process to signal readiness */
472   while (1) {
473     if (read(read_pipe,&ret,sizeof(ret))==sizeof(ret)) break;
474     if ((errno==EINTR)||(errno==EAGAIN)) continue;
475     /* failure */
476     ERR("dosmod has failed to initialize\n");
477     if (mm_name[0]!=0) unlink(mm_name);
478     return FALSE;
479   }
480   /* the child has now mmaped the temp file, it's now safe to unlink.
481    * do it here to avoid leaving a mess in /tmp if/when Wine crashes... */
482   if (mm_name[0]!=0) unlink(mm_name);
483   /* start simulated system timer */
484   MZ_InitTimer(ret);
485   if (ret<2) {
486     ERR("dosmod version too old! Please install newer dosmod properly\n");
487     ERR("If you don't, the new dosmod event handling system will not work\n");
488   }
489   /* all systems are now go */
490  } else {
491   /* child process */
492   close(read_pipe);
493   close(write_pipe);
494   /* put our pipes somewhere dosmod can find them */
495   dup2(write_fd[0],0); /* stdin */
496   dup2(x_fd,1);        /* stdout */
497   /* now load dosmod */
498   /* check argv[0]-derived paths first, since the newest dosmod is most likely there
499    * (at least it was once for Andreas Mohr, so I decided to make it easier for him) */
500   fpath=strrchr(strcpy(path,full_argv0),'/');
501   if (fpath) {
502    strcpy(fpath,"/dosmod");
503    execl(path,mm_name,NULL);
504    strcpy(fpath,"/loader/dos/dosmod");
505    execl(path,mm_name,NULL);
506   }
507   /* okay, it wasn't there, try in the path */
508   execlp("dosmod",mm_name,NULL);
509   /* last desperate attempts: current directory */
510   execl("dosmod",mm_name,NULL);
511   /* and, just for completeness... */
512   execl("loader/dos/dosmod",mm_name,NULL);
513   /* if failure, exit */
514   ERR("Failed to spawn dosmod, error=%s\n",strerror(errno));
515   exit(1);
516  }
517  return TRUE;
518 }
519
520 static void MZ_Launch(void)
521 {
522   CONTEXT context;
523   TDB *pTask = GlobalLock16( GetCurrentTask() );
524   BYTE *psp_start = PTR_REAL_TO_LIN( DOSVM_psp, 0 );
525
526   MZ_FillPSP(psp_start, GetCommandLineA());
527   pTask->flags |= TDBF_WINOLDAP;
528
529   memset( &context, 0, sizeof(context) );
530   context.SegCs  = init_cs;
531   context.Eip    = init_ip;
532   context.SegSs  = init_ss;
533   context.Esp    = init_sp;
534   context.SegDs  = DOSVM_psp;
535   context.SegEs  = DOSVM_psp;
536   context.EFlags = 0x00080000;  /* virtual interrupt flag */
537   _LeaveWin16Lock();
538   DOSVM_Enter( &context );
539 }
540
541 static void MZ_KillTask(void)
542 {
543   TRACE("killing DOS task\n");
544   VGA_Clean();
545   kill(dosmod_pid,SIGTERM);
546 }
547
548 /***********************************************************************
549  *              MZ_Exit
550  */
551 void WINAPI MZ_Exit( CONTEXT86 *context, BOOL cs_psp, WORD retval )
552 {
553   if (DOSVM_psp) {
554     WORD psp_seg = cs_psp ? context->SegCs : DOSVM_psp;
555     LPBYTE psp_start = (LPBYTE)((DWORD)psp_seg << 4);
556     PDB16 *psp = (PDB16 *)psp_start;
557     WORD parpsp = psp->parentPSP; /* check for parent DOS process */
558     if (parpsp) {
559       /* retrieve parent's return address */
560       FARPROC16 retaddr = DOSVM_GetRMHandler(0x22);
561       /* restore interrupts */
562       DOSVM_SetRMHandler(0x22, psp->savedint22);
563       DOSVM_SetRMHandler(0x23, psp->savedint23);
564       DOSVM_SetRMHandler(0x24, psp->savedint24);
565       /* FIXME: deallocate file handles etc */
566       /* free process's associated memory
567        * FIXME: walk memory and deallocate all blocks owned by process */
568       DOSMEM_FreeBlock(DOSMEM_MapRealToLinear(MAKELONG(0,psp->environment)));
569       DOSMEM_FreeBlock(DOSMEM_MapRealToLinear(MAKELONG(0,DOSVM_psp)));
570       /* switch to parent's PSP */
571       DOSVM_psp = parpsp;
572       psp_start = (LPBYTE)((DWORD)parpsp << 4);
573       psp = (PDB16 *)psp_start;
574       /* now return to parent */
575       DOSVM_retval = retval;
576       context->SegCs = SELECTOROF(retaddr);
577       context->Eip   = OFFSETOF(retaddr);
578       context->SegSs = SELECTOROF(psp->saveStack);
579       context->Esp   = OFFSETOF(psp->saveStack);
580       return;
581     } else
582       MZ_KillTask();
583   }
584   ExitThread( retval );
585 }
586
587
588 /***********************************************************************
589  *              MZ_Current
590  */
591 BOOL WINAPI MZ_Current( void )
592 {
593     return (write_pipe != -1); /* FIXME: do a better check */
594 }
595
596 #else /* !MZ_SUPPORTED */
597
598 /***********************************************************************
599  *              LoadDosExe (WINEDOS.@)
600  */
601 void WINAPI MZ_LoadImage( LPCSTR filename, HANDLE hFile )
602 {
603   WARN("DOS executables not supported on this platform\n");
604   SetLastError(ERROR_BAD_FORMAT);
605 }
606
607 /***********************************************************************
608  *              MZ_Exec
609  */
610 BOOL WINAPI MZ_Exec( CONTEXT86 *context, LPCSTR filename, BYTE func, LPVOID paramblk )
611 {
612   /* can't happen */
613   SetLastError(ERROR_BAD_FORMAT);
614   return FALSE;
615 }
616
617 /***********************************************************************
618  *              MZ_AllocDPMITask
619  */
620 void WINAPI MZ_AllocDPMITask( void )
621 {
622     ERR("Actual real-mode calls not supported on this platform!\n");
623 }
624
625 /***********************************************************************
626  *              MZ_Exit
627  */
628 void WINAPI MZ_Exit( CONTEXT86 *context, BOOL cs_psp, WORD retval )
629 {
630   ExitThread( retval );
631 }
632
633 /***********************************************************************
634  *              MZ_Current
635  */
636 BOOL WINAPI MZ_Current( void )
637 {
638     return FALSE;
639 }
640
641 #endif /* !MZ_SUPPORTED */