Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
c649d874
Commit
c649d874
authored
Apr 30, 2013
by
Austin English
Committed by
Alexandre Julliard
May 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr110: Implement __crtGetShowWindowMode.
parent
991e8467
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletion
+16
-1
msvcr110.c
dlls/msvcr110/msvcr110.c
+15
-0
msvcr110.spec
dlls/msvcr110/msvcr110.spec
+1
-1
No files found.
dlls/msvcr110/msvcr110.c
View file @
c649d874
...
...
@@ -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
;
}
dlls/msvcr110/msvcr110.spec
View file @
c649d874
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment