Re: [3/3] ntdll: Add support for FILE_APPEND_DATA to NtWriteFile. Take 2.
4 Oct
2013
4 Oct
'13
6:04 p.m.
Dmitry Timoshkov <dmitry(a)baikal.ru> writes:
@@ -979,6 +986,12 @@ NTSTATUS WINAPI NtWriteFile(HANDLE hFile, HANDLE hEvent, goto done; }
+ if (append_write) + { + offset_eof.QuadPart = (LONGLONG)-1; /* FILE_WRITE_TO_END_OF_FILE */ + offset = &offset_eof; + } +
Please add a test for the file position after the write, to show that this is the correct behavior. -- Alexandre Julliard julliard(a)winehq.org
4455
Age (days ago)
4455
Last active (days ago)
0 comments
1 participants
participants (1)
-
Alexandre Julliard