ntdll: Use an NtWriteFile pointer instead of a static import.
This commit is contained in:
parent
4266b154be
commit
bfd69719a6
|
@ -840,8 +840,8 @@ static void append_file_test(void)
|
|||
U(iosb).Status = STATUS_PENDING;
|
||||
iosb.Information = 0;
|
||||
|
||||
status = NtWriteFile(handle, NULL, NULL, NULL, &iosb,
|
||||
text, sizeof(text), NULL, NULL);
|
||||
status = pNtWriteFile(handle, NULL, NULL, NULL, &iosb,
|
||||
text, sizeof(text), NULL, NULL);
|
||||
|
||||
if (status == STATUS_PENDING)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue