From 404d11b785f2e88d368056b06ae6ca09004c19ab Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Wed, 7 Aug 2024 11:13:01 -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 8898753ae..20a14f0cd 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 "bb414cc95e84099084c9476c468846e483ef7a0f" +#define CEF_API_HASH_UNIVERSAL "3c4bef13c1801f001305b1bc3af84039b2426943" #if defined(OS_WIN) -#define CEF_API_HASH_PLATFORM "1a921f6a2c91bc5369afce001c37645ef726e804" +#define CEF_API_HASH_PLATFORM "10e56374e7d422b45eec31ae5d2aa7ef5288621c" #elif defined(OS_MAC) -#define CEF_API_HASH_PLATFORM "8c96e8a60224dc40ec40067b6a515af79dd47f8f" +#define CEF_API_HASH_PLATFORM "ae9f14019f456db6ad8059f17d1dfd484d4a08d7" #elif defined(OS_LINUX) -#define CEF_API_HASH_PLATFORM "693e114620a780000fbb7334537145caed271c66" +#define CEF_API_HASH_PLATFORM "84dcdea90daf46d0ba611b1d0f3e42666fb3382d" #endif #ifdef __cplusplus diff --git a/include/internal/cef_types.h b/include/internal/cef_types.h index aee8177d0..f4de7dea8 100644 --- a/include/internal/cef_types.h +++ b/include/internal/cef_types.h @@ -491,7 +491,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;