Skip to content
Snippets Groups Projects
Unverified Commit 9b415372 authored by Ostap Brehin's avatar Ostap Brehin :hammer:
Browse files

include: Name parameters in LPPROGRESS_ROUTINE typedef

parent 055bddab
Branches
Tags
No related merge requests found
Pipeline #31253 failed
......@@ -1035,9 +1035,17 @@ typedef struct _WIN32_FILE_ATTRIBUTES_DATA {
* This one seems to be a Win32 only definition. It also is defined with
* WINAPI instead of CALLBACK in the windows headers.
*/
typedef DWORD (CALLBACK *LPPROGRESS_ROUTINE)(LARGE_INTEGER, LARGE_INTEGER, LARGE_INTEGER,
LARGE_INTEGER, DWORD, DWORD, HANDLE,
HANDLE, LPVOID);
typedef DWORD (CALLBACK *LPPROGRESS_ROUTINE)(
LARGE_INTEGER TotalFileSize,
LARGE_INTEGER TotalBytesTransferred,
LARGE_INTEGER StreamSize,
LARGE_INTEGER StreamBytesTransferred,
DWORD dwStreamNumber,
DWORD dwCallbackReason,
HANDLE hSourceFile,
HANDLE hDestinationFile,
LPVOID lpData
);
typedef DWORD (WINAPI *APPLICATION_RECOVERY_CALLBACK)(PVOID);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment