When multiple bufs are specified, overlapped needs to be advanced manually between each write. Without this, each buf will be written to the same position (if offset is specified.)
Since the buf flow seems to have been introduced only in unstable releases, I suppose no one should've been accidentally depending on the previous behavior.
When multiple bufs are specified, overlapped needs to be advanced manually between each write. Without this, each buf will be written to the same position (if offset is specified.)
ReadFile()
automatically advances, butWriteFile()
does not.Since the buf flow seems to have been introduced only in unstable releases, I suppose no one should've been accidentally depending on the previous behavior.
-[Unknown]