http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
580bce7
)
Uncomment call to FlushConsoleInputBuffer in FlushFileBuffers.
author
Dmitry Timoshkov
<dmitry@codeweavers.com>
Wed, 22 Dec 2004 14:51:46 +0000
(14:51 +0000)
committer
Alexandre Julliard
<julliard@winehq.org>
Wed, 22 Dec 2004 14:51:46 +0000
(14:51 +0000)
dlls/kernel/file.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/kernel/file.c
b/dlls/kernel/file.c
index 7956daa4f8bad708ddc4c0a11d701108c9ee03f8..e1990962371bf14ac8a0ccd45757595bd1ae16c4 100644
(file)
--- a/
dlls/kernel/file.c
+++ b/
dlls/kernel/file.c
@@
-681,9
+681,7
@@
BOOL WINAPI FlushFileBuffers( HANDLE hFile )
if (is_console_handle( hFile ))
{
/* this will fail (as expected) for an output handle */
- /* FIXME: wait until FlushFileBuffers is moved to dll/kernel */
- /* return FlushConsoleInputBuffer( hFile ); */
- return TRUE;
+ return FlushConsoleInputBuffer( hFile );
}
nts = NtFlushBuffersFile( hFile, &ioblk );
if (nts != STATUS_SUCCESS)