kernel32: Remove incorrect comment from !i386 version of GetLargestConsoleWindowSize.
Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
dfe42ca506
commit
66974e5502
|
@ -1398,19 +1398,9 @@ DWORD WINAPI GetLargestConsoleWindowSize(HANDLE hConsoleOutput)
|
|||
TRACE("(%p), returning %dx%d (%x)\n", hConsoleOutput, x.c.X, x.c.Y, x.w);
|
||||
return x.w;
|
||||
}
|
||||
#endif /* defined(__i386__) */
|
||||
|
||||
#else
|
||||
|
||||
/***********************************************************************
|
||||
* GetLargestConsoleWindowSize (KERNEL32.@)
|
||||
*
|
||||
* NOTE
|
||||
* This should return a COORD, but calling convention for returning
|
||||
* structures is different between Windows and gcc on i386.
|
||||
*
|
||||
* VERSION: [!i386]
|
||||
*/
|
||||
#ifndef __i386__
|
||||
COORD WINAPI GetLargestConsoleWindowSize(HANDLE hConsoleOutput)
|
||||
{
|
||||
COORD c;
|
||||
|
|
Loading…
Reference in New Issue