From fa996973edf39cc17a53f7131a79b9883570538d Mon Sep 17 00:00:00 2001 From: The Arrayser <68914060+TheArrayser@users.noreply.github.com> Date: Sun, 28 Aug 2022 13:35:39 +0200 Subject: [PATCH] some big brain changes --- System Abstraction/cdb_Sustem.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/System Abstraction/cdb_Sustem.h b/System Abstraction/cdb_Sustem.h index 39c16d1..dc6abd8 100644 --- a/System Abstraction/cdb_Sustem.h +++ b/System Abstraction/cdb_Sustem.h @@ -7,12 +7,14 @@ #define sus_True 1 #define sus_False 0 -#define SUS_FILE_TEMP (1UL << 0) +#define SUS_FILE_TEMP ((1UL << 0) | SUS_FILE_NEW) //A temporary file gets automatically deleted, once it is no longer needed; a temp file also has to be a new file #define SUS_FILE_NEW (1UL << 1) #define SUS_FILE_NOTHING 0UL //Naming: firstly the package, then the topic, lastly the operation +#include + //Operating System independent implementation typedef struct sus_File_impl * sus_File;