4 Commits

Author SHA1 Message Date
abdelrahman 7a314a0038 Fix include paths
Release / release (push) Successful in 4s
2026-05-25 17:41:52 +01:00
abdelrahman f073e5a21f v1.1.1
Release / release (push) Successful in 6s
2026-05-25 17:35:05 +01:00
abdelrahman 536a1a3b01 v1.1.1
Release / release (push) Has been cancelled
2026-05-25 16:38:40 +01:00
abdelrahman a6b697dd0e Pad logger struct for MSVC
Release / release (push) Successful in 3s
2026-05-17 17:46:50 +01:00
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -1 +1 @@
1.1.0
1.1.2
+3
View File
@@ -4,6 +4,7 @@
#include "../common/aliases/aliases.h"
#include "../common/assert/assert.h"
#include "../os/file/file.h"
#include "../common/misc/misc_utils.h"
#define LOG_LEVEL_STR_LENGTH 8
#define LOG_PREFIX_BUF_LENGTH 16
@@ -12,6 +13,8 @@ typedef struct {
WFile *outlog;
WFile *errlog;
LogLevel level;
wapp_misc_utils_reserve_padding(2 * sizeof(WFile *) + sizeof(LogLevel));
} LogConfig;
wapp_intern LogConfig LOG_CONFIG = {