From a02540cf8ad540096f787f7d80abe62435b48f26 Mon Sep 17 00:00:00 2001 From: ENGO150 Date: Thu, 5 May 2022 18:41:57 +0200 Subject: [PATCH] deprecated skipCheck and noOutput flag --- include/flags.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/include/flags.h b/include/flags.h index ff4c376..cfcb6f9 100644 --- a/include/flags.h +++ b/include/flags.h @@ -26,17 +26,17 @@ //VARIABLES static int keyLength = 50; //LENGTH OF KEY > DO NOT TOUCH THIS < -static int skipCheck = 0; //BOOLEAN FOR SKIPPING VERSION CHECK -static int noOutput = 0; //BOOLEAN FOR NOT PRINTING OUTPUT WHEN ENCRYPTING/DECRYPTING +DEPRECATED static int skipCheck = 0; //BOOLEAN FOR SKIPPING VERSION CHECK +DEPRECATED static int noOutput = 0; //BOOLEAN FOR NOT PRINTING OUTPUT WHEN ENCRYPTING/DECRYPTING //GETTERS -int getSkipCheck(); int getKeyLength(); -int getNoOutput(); +DEPRECATED int getSkipCheck(); +DEPRECATED int getNoOutput(); //SETTERS -void setSkipCheck(int skipCheckNew); void setKeyLength(int keyLengthNew); -void setNoOutput(int noOutputNew); +DEPRECATED void setSkipCheck(int skipCheckNew); +DEPRECATED void setNoOutput(int noOutputNew); #endif