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
b7ce75e9
Commit
b7ce75e9
authored
Apr 27, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 27, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wincon.h: Don't use calling convention wrappers on MSVC.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
59336f2f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
console.c
dlls/kernel32/console.c
+1
-1
console.c
dlls/kernelbase/console.c
+1
-1
wincon.h
include/wincon.h
+1
-1
No files found.
dlls/kernel32/console.c
View file @
b7ce75e9
...
...
@@ -1802,7 +1802,7 @@ static COORD get_console_font_size(HANDLE hConsole, DWORD index)
return
c
;
}
#if defined(__i386__) && !defined(__MINGW32__)
#if defined(__i386__) && !defined(__MINGW32__)
&& !defined(_MSC_VER)
#undef GetConsoleFontSize
DWORD
WINAPI
GetConsoleFontSize
(
HANDLE
hConsole
,
DWORD
index
)
{
...
...
dlls/kernelbase/console.c
View file @
b7ce75e9
...
...
@@ -577,7 +577,7 @@ DWORD WINAPI DECLSPEC_HOTPATCH GetConsoleTitleW( LPWSTR title, DWORD size )
/***********************************************************************
* GetLargestConsoleWindowSize (kernelbase.@)
*/
#if defined(__i386__) && !defined(__MINGW32__)
#if defined(__i386__) && !defined(__MINGW32__)
&& !defined(_MSC_VER)
#undef GetLargestConsoleWindowSize
DWORD
WINAPI
DECLSPEC_HOTPATCH
GetLargestConsoleWindowSize
(
HANDLE
handle
)
{
...
...
include/wincon.h
View file @
b7ce75e9
...
...
@@ -268,7 +268,7 @@ typedef struct tagINPUT_RECORD
#define CONSOLE_TEXTMODE_BUFFER 1
#if defined(__i386__) && !defined(__MINGW32__)
#if defined(__i386__) && !defined(__MINGW32__)
&& !defined(_MSC_VER)
/* Note: this should return a COORD, but calling convention for returning
* structures is different between Windows and gcc on i386. */
...
...
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