Use int instead of bool in cef_settings_t

This commit is contained in:
Marshall Greenblatt 2024-08-07 11:12:45 -04:00
parent a226b447dd
commit d529f0259d
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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;