Arek Hiler (@ivyl) commented about dlls/kernelbase/file.c:
return CreateFileW( name, access, sharing, sa, creation, flags | attributes, template ); }
+/************************************************************************* + * CreateFileTransactedA (kernelbase.@) + */ +HANDLE WINAPI DECLSPEC_HOTPATCH CreateFileTransactedA( LPCSTR name, DWORD access, DWORD sharing, + LPSECURITY_ATTRIBUTES sa, DWORD creation, + DWORD attributes, HANDLE template, + HANDLE transaction, PUSHORT pusMiniVersion, + PVOID pExtendedParameter ) +{ + FIXME( "(%s %lx %lx %p %lx %lx %p %p %p %p), semi-stub\n", debugstr_a(name), access, sharing, sa, + creation, attributes, template, transaction, pusMiniVersion, pExtendedParameter ); +
tailing whitespace -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1145#note_11882