RE: Linker error when improving GetLargestConsoleWindowSize

2013-03-27 Thread Hugh McMaster
-Original Message- From: Eric Pouech [mailto:eric.pou...@orange.fr] Sent: Wednesday, 27 March 2013 8:54 AM To: wine-devel@winehq.org Subject: Re: Linker error when improving GetLargestConsoleWindowSize Ken Thomases wrote: >This won't be able to work. The linker error is tel

RE: Linker error when improving GetLargestConsoleWindowSize

2013-03-26 Thread Hugh McMaster
] Sent: Tuesday, 26 March 2013 1:54 PM To: Hugh McMaster Cc: wine-devel@winehq.org Subject: Re: Linker error when improving GetLargestConsoleWindowSize On Mar 25, 2013, at 8:51 PM, Hugh McMaster wrote: > I've written a function to determine the largest possible screen buffer that >

Re: Linker error when improving GetLargestConsoleWindowSize

2013-03-26 Thread Eric Pouech
>This won't be able to work. The linker error is telling you, effectively, that you're not importing user32. However, kernel32 can't import user32. Kernel32 is at a lower level than user32. And a console program especially can't rely on user32 being loaded and initialized to satisfy the request

Re: Linker error when improving GetLargestConsoleWindowSize

2013-03-25 Thread Ken Thomases
On Mar 25, 2013, at 8:51 PM, Hugh McMaster wrote: > I've written a function to determine the largest possible screen buffer that > wineconsole is able to display. This function replaces the hard-coded > constants listed in both instances of GetLargestConsoleWindowSize in > dlls/kernel32/console