Re: [PATCH v15 0/6] MR1145: kernel32: Implement various transacted file APIs.
Alexandre Julliard (@julliard) commented about dlls/kernel32/path.c:
return MoveFileWithProgressW(source, dest, progress, data, flags); }
+/************************************************************************* + * CreateFileTransactedA (KERNEL32.@) + */ +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 ) +{
Please don't use Hungarian notation, particularly when the other parameters use the standard form. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1145#note_28447
participants (1)
-
Alexandre Julliard (@julliard)