Fixed compilation erros on non-Linux systems.

This commit is contained in:
Gerald Pfeifer 1999-05-29 10:54:25 +00:00 committed by Alexandre Julliard
parent 25cf49e72c
commit 61e18d463d
1 changed files with 3 additions and 3 deletions

View File

@ -558,9 +558,9 @@ LPDOSTASK MZ_Current( void )
#else /* !MZ_SUPPORTED */ #else /* !MZ_SUPPORTED */
BOOL MZ_CreateProcess( HFILE hFile, OFSTRUCT *ofs, LPCSTR cmdline, LPCSTR env, BOOL MZ_CreateProcess( HFILE hFile, OFSTRUCT *ofs, LPCSTR cmdline, LPCSTR env,
LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa, LPSECURITY_ATTRIBUTES psa, LPSECURITY_ATTRIBUTES tsa,
BOOL inherit, LPSTARTUPINFOA startup, BOOL inherit, DWORD flags, LPSTARTUPINFOA startup,
LPPROCESS_INFORMATION info ) LPPROCESS_INFORMATION info )
{ {
WARN(module,"DOS executables not supported on this architecture\n"); WARN(module,"DOS executables not supported on this architecture\n");
@ -568,7 +568,7 @@ BOOL MZ_CreateProcess( HFILE hFile, OFSTRUCT *ofs, LPCSTR cmdline, LPCSTR env,
return FALSE; return FALSE;
} }
LPDOSTASK *MZ_Current( void ) LPDOSTASK MZ_Current( void )
{ {
return NULL; return NULL;
} }