Changed buffer size for EM_STREAMIN message to 4096, as it's what M$

uses.
This commit is contained in:
Phil Krylov 2005-03-09 12:40:01 +00:00 committed by Alexandre Julliard
parent c10dcfaf3f
commit 95e527b0f4
1 changed files with 1 additions and 1 deletions

View File

@ -238,7 +238,7 @@ ME_TextBuffer *ME_MakeText() {
return buf;
}
#define STREAMIN_BUFFER_SIZE 1024
#define STREAMIN_BUFFER_SIZE 4096 /* M$ compatibility */
static LRESULT ME_StreamInText(ME_TextEditor *editor, DWORD dwFormat, EDITSTREAM *stream, ME_Style *style)
{