Skip to content
Snippets Groups Projects
Commit 1f7fce3c authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Fixed compile for !MZ_SUPPORTED.

parent 60fd03d2
Branches
Tags
No related merge requests found
......@@ -584,6 +584,15 @@ void WINAPI MZ_Exit( CONTEXT86 *context, BOOL cs_psp, WORD retval )
ExitThread( retval );
}
/***********************************************************************
* MZ_Current
*/
BOOL WINAPI MZ_Current( void )
{
return (write_pipe != -1); /* FIXME: do a better check */
}
#else /* !MZ_SUPPORTED */
/***********************************************************************
......@@ -611,7 +620,6 @@ BOOL WINAPI MZ_Exec( CONTEXT86 *context, LPCSTR filename, BYTE func, LPVOID para
void WINAPI MZ_AllocDPMITask( void )
{
ERR("Actual real-mode calls not supported on this platform!\n");
return NULL;
}
/***********************************************************************
......@@ -622,12 +630,12 @@ void WINAPI MZ_Exit( CONTEXT86 *context, BOOL cs_psp, WORD retval )
ExitThread( retval );
}
#endif /* !MZ_SUPPORTED */
/***********************************************************************
* MZ_Current
*/
BOOL WINAPI MZ_Current( void )
{
return (write_pipe != -1); /* FIXME: do a better check */
return FALSE;
}
#endif /* !MZ_SUPPORTED */
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment