20 Oct
2022
20 Oct
'22
6:23 p.m.
Zebediah Figura (@zfigura) commented about dlls/ntdll/tests/pipe.c:
CloseHandle(hdirectory); }
+enum { + TestTodoWine = 1, +}; + +struct pipe_name_test { + const WCHAR *name; + NTSTATUS status; + int flags; + const WCHAR *no_open_name; +};
No need for this flags enum; just use a bool variable. (Also, usual Wine style has braces on a new line.) -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1070#note_11585