Feb. 20, 2019
11:43 a.m.
Hi Paul, On 2/20/19 6:33 PM, Paul Gofman wrote:
+ + br = pSetFileCompletionNotificationModes(hfile, 0); + ok(br, "SetFileCompletionNotificationModes failed, error %u.\n", GetLastError());
It doesn't really hurt, but note that this call is no-op. You can't reset mode bits that are already set. Since the handle is closed just after this test, you could just skip this part. Jacek