Alistair Leslie-Hughes : include: Add recovery defines.
Module: wine Branch: master Commit: d7dd469be4bd5b09f60fdf85f5eb90590b74b7a9 URL: https://source.winehq.org/git/wine.git/?a=commit;h=d7dd469be4bd5b09f60fdf85f... Author: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> Date: Mon Jul 29 23:07:47 2019 +0000 include: Add recovery defines. Signed-off-by: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- include/winbase.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/include/winbase.h b/include/winbase.h index 3e75a4b..086a8b3 100644 --- a/include/winbase.h +++ b/include/winbase.h @@ -1053,6 +1053,16 @@ typedef DWORD (CALLBACK *LPPROGRESS_ROUTINE)(LARGE_INTEGER, LARGE_INTEGER, LARGE typedef DWORD (WINAPI *APPLICATION_RECOVERY_CALLBACK)(PVOID); +#define RECOVERY_DEFAULT_PING_INTERVAL 5000 +#define RECOVERY_MAX_PING_INTERVAL (5*60*1000) + +#define RESTART_MAX_CMD_LINE 1024 + +#define RESTART_NO_CRASH 1 +#define RESTART_NO_HANG 2 +#define RESTART_NO_PATCH 4 +#define RESTART_NO_REBOOT 8 + typedef enum _COPYFILE2_MESSAGE_TYPE { COPYFILE2_CALLBACK_NONE = 0,
participants (1)
-
Alexandre Julliard