Commit a5e6c89d authored by Louis. Lenders's avatar Louis. Lenders Committed by Alexandre Julliard

msvcrt: Add stub for _getmaxstdio.

parent 7d2917ce
......@@ -3080,6 +3080,15 @@ int CDECL MSVCRT_wprintf(const MSVCRT_wchar_t *format, ...)
}
/*********************************************************************
* _getmaxstdio (MSVCRT.@)
*/
int CDECL _getmaxstdio(void)
{
FIXME("stub, always returns 512\n");
return 512;
}
/*********************************************************************
* __pioinfo (MSVCRT.@)
* FIXME: see MSVCRT_MAX_FILES define.
*/
......
......@@ -260,7 +260,7 @@
@ cdecl _getdllprocaddr(long str long)
@ cdecl _getdrive()
@ cdecl _getdrives() kernel32.GetLogicalDrives
@ stub _getmaxstdio #()
@ cdecl _getmaxstdio()
@ cdecl _getmbcp()
@ cdecl _getpid() kernel32.GetCurrentProcessId
@ stub _getsystime #(ptr)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment