mirror of
https://github.com/reactos/reactos.git
synced 2025-05-18 00:31:27 +00:00
[KERNEL32]
- ReadDirectoryChangesW: Treat the OVERLAPPED structure as an IO_STATUS_BLOCK, not one of its fields. svn path=/trunk/; revision=50284
This commit is contained in:
parent
ca2b0ca3a7
commit
7b455367ff
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ ReadDirectoryChangesW(
|
|||
EventHandle,
|
||||
IoApcRoutine,
|
||||
CompletionRoutine, /* ApcContext */
|
||||
lpOverlapped ? (PIO_STATUS_BLOCK)lpOverlapped->Internal : &IoStatus,
|
||||
lpOverlapped ? (PIO_STATUS_BLOCK) lpOverlapped : &IoStatus,
|
||||
lpBuffer,
|
||||
nBufferLength,
|
||||
dwNotifyFilter,
|
||||
|
|
Loading…
Reference in a new issue