Merge pull request #2453 from elyosh/qtstatusbar

qt: switch to polling for status bar updating
This commit is contained in:
Miran Grča
2022-07-13 02:02:04 +02:00
committed by GitHub
12 changed files with 244 additions and 103 deletions

View File

@@ -70,10 +70,12 @@ extern int strnicmp(const char* s1, const char* s2, size_t n);
#ifdef __cplusplus
#include <atomic>
#define atomic_flag_t std::atomic_flag
#define atomic_bool_t std::atomic_bool
extern "C" {
#else
#include <stdatomic.h>
#define atomic_flag_t atomic_flag
#define atomic_bool_t atomic_bool
#endif
/* Global variables residing in the platform module. */