From d529f0259de97d84916e1fedb5f9553fa0dffa1e Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 7 Aug 2024 11:12:45 -0400 Subject: [PATCH] Use int instead of bool in cef_settings_t --- include/cef_api_hash.h | 8 ++++---- include/internal/cef_types.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/include/cef_api_hash.h b/include/cef_api_hash.h index c7988b8ce..c04eeecf7 100644 --- a/include/cef_api_hash.h +++ b/include/cef_api_hash.h @@ -42,13 +42,13 @@ // way that may cause binary incompatibility with other builds. The universal // hash value will change if any platform is affected whereas the platform hash // values will change only if that particular platform is affected. -#define CEF_API_HASH_UNIVERSAL "750e646ce679af7a9e814a0f5b7bdc015a8a01b8" +#define CEF_API_HASH_UNIVERSAL "d3709fcbd6630817b73287083d5440bffffcfb0b" #if defined(OS_WIN) -#define CEF_API_HASH_PLATFORM "61741d8a07d448ff0cdc843c2e4a55fbd92e7ce8" +#define CEF_API_HASH_PLATFORM "2e66390b5f0fa21ab4667b503e76164037cd674e" #elif defined(OS_MAC) -#define CEF_API_HASH_PLATFORM "1854d54af83f887fa4fd65fc894f0c9a751f5b15" +#define CEF_API_HASH_PLATFORM "94ce56bc6f289ae039ca7db2ac8d32901e71a4e1" #elif defined(OS_LINUX) -#define CEF_API_HASH_PLATFORM "924ec9f48cffc9dba6246114f40202be4533f5ce" +#define CEF_API_HASH_PLATFORM "2fda6a422c06b87a4ce47bdfd4c985346f1eaab8" #endif #ifdef __cplusplus diff --git a/include/internal/cef_types.h b/include/internal/cef_types.h index 932da0314..c903205f6 100644 --- a/include/internal/cef_types.h +++ b/include/internal/cef_types.h @@ -519,7 +519,7 @@ typedef struct _cef_settings_t { /// /// Specify whether signal handlers must be disabled on POSIX systems. /// - bool disable_signal_handlers; + int disable_signal_handlers; #endif } cef_settings_t;