Fix for platforms not supporting DOS mode.

This commit is contained in:
Patrik Stridvall 2002-10-23 20:16:36 +00:00 committed by Alexandre Julliard
parent 8b991b2798
commit fb1a572b64
1 changed files with 8 additions and 0 deletions

View File

@ -574,6 +574,14 @@ void WINAPI MZ_AllocDPMITask( void )
ERR("Actual real-mode calls not supported on this platform!\n");
}
/***********************************************************************
* MZ_RunInThread
*/
void WINAPI MZ_RunInThread( PAPCFUNC proc, ULONG_PTR arg )
{
proc(arg);
}
/***********************************************************************
* MZ_Exit
*/