Fix for platforms not supporting DOS mode.
This commit is contained in:
parent
8b991b2798
commit
fb1a572b64
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue