Commit c649d874 authored by Austin English's avatar Austin English Committed by Alexandre Julliard

msvcr110: Implement __crtGetShowWindowMode.

parent 991e8467
......@@ -23,6 +23,9 @@
#include "stdlib.h"
#include "windef.h"
#include "winbase.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
/*********************************************************************
* DllMain (MSVCR110.@)
......@@ -47,3 +50,15 @@ LPTOP_LEVEL_EXCEPTION_FILTER CDECL MSVCR110__crtSetUnhandledExceptionFilter(LPTO
{
return SetUnhandledExceptionFilter(filter);
}
/*********************************************************************
* __crtGetShowWindowMode (MSVCR110.@)
*/
int CDECL MSVCR110__crtGetShowWindowMode(void)
{
STARTUPINFOW si;
GetStartupInfoW(&si);
TRACE("window=%d\n", si.wShowWindow);
return si.wShowWindow;
}
......@@ -918,7 +918,7 @@
@ stub -arch=i386,win64 __crtFlsSetValue
@ stub -arch=i386,win64 __crtGetDateFormatEx
@ stub -arch=i386,win64 __crtGetLocaleInfoEx
@ stub __crtGetShowWindowMode
@ cdecl __crtGetShowWindowMode() MSVCR110__crtGetShowWindowMode
@ stub -arch=i386,win64 __crtGetTimeFormatEx
@ stub -arch=i386,win64 __crtGetUserDefaultLocaleName
@ stub -arch=i386,win64 __crtInitializeCriticalSectionEx
......
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