[PATCH] wineconsole: Set input stream buffer length per OS limit

Nikolay Sivov bunglehead at gmail.com
Thu Mar 26 06:39:50 CDT 2015


On 26.03.2015 14:32, Hugh McMaster wrote:
> ---
>   programs/wineconsole/wineconsole.c | 32 ++++++++++++++++++++++++++++++--
>   1 file changed, 30 insertions(+), 2 deletions(-)
>
> diff --git a/programs/wineconsole/wineconsole.c b/programs/wineconsole/wineconsole.c
> index 3c2faf5..81300ed 100644
> --- a/programs/wineconsole/wineconsole.c
> +++ b/programs/wineconsole/wineconsole.c
> @@ -797,6 +797,11 @@ static UINT WINECON_ParseOptions(const char* lpCmdLine, struct wc_init* wci)
>       return 0;
>   }
>
> +#define MAXSTRING_NON_NT 128
> +#define MAXSTRING_NT351 260
> +#define MAXSTRING_NT4_W2K 2048
> +#define MAXSTRING_XP 8192
> +

Why do you need this mess?




More information about the wine-devel mailing list