summaryrefslogtreecommitdiff
path: root/include/log.hpp
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-09-27 18:38:35 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-09-27 18:38:35 +0200
commitd8c4d84dc75300c6d4d8b0adceafa33741960b92 (patch)
tree00e2dfcc5c836d62fccff76c862e6ec3b0a74db8 /include/log.hpp
parentfa088bb60692ba02d30d39affa9a31d9e2b688e2 (diff)
added http lib, working on AI invoice importing
Diffstat (limited to 'include/log.hpp')
-rw-r--r--include/log.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/log.hpp b/include/log.hpp
index cdb6a9f..bff3d05 100644
--- a/include/log.hpp
+++ b/include/log.hpp
@@ -29,12 +29,12 @@ typedef struct {
u32 history_length;
char history[MAX_LEN_LOG_HISTORY][MAX_LEN_LOG_TXT];
ImVec4 colors[MAX_LEN_LOG_HISTORY];
-} log;
+} program_log;
#define STOPWATCH_START tick_t timestamp_start = timer_current();
#define STOPWATCH_TIME (timer_elapsed(timestamp_start)*1000.0f)
-log* get_log();
+program_log* get_log();
void log_clear();
void log_aerr(a_err errors);