mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-02 11:37:26 +00:00
Fixed compilation erros on non-Linux systems.
This commit is contained in:
parent
25cf49e72c
commit
61e18d463d
1 changed files with 3 additions and 3 deletions
|
@ -558,9 +558,9 @@ LPDOSTASK MZ_Current( void )
|
|||
|
||||
#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,
|
||||
BOOL inherit, LPSTARTUPINFOA startup,
|
||||
BOOL inherit, DWORD flags, LPSTARTUPINFOA startup,
|
||||
LPPROCESS_INFORMATION info )
|
||||
{
|
||||
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;
|
||||
}
|
||||
|
||||
LPDOSTASK *MZ_Current( void )
|
||||
LPDOSTASK MZ_Current( void )
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue