From 655b3d6d86420e16333f6000c0c30a201bcc5e78 Mon Sep 17 00:00:00 2001 From: Michael Nolan Date: Sun, 17 Apr 2022 07:04:03 -0500 Subject: [PATCH] Added LICENSE.md and README.md --- source/config.c | 4 ++++ source/config.h | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 source/config.c create mode 100644 source/config.h diff --git a/source/config.c b/source/config.c new file mode 100644 index 0000000..41de3ed --- /dev/null +++ b/source/config.c @@ -0,0 +1,4 @@ +//not implemented yet or maybe never +void LoadConfigSettings(){ + +} diff --git a/source/config.h b/source/config.h new file mode 100644 index 0000000..98b3b22 --- /dev/null +++ b/source/config.h @@ -0,0 +1,8 @@ +#ifndef CONFIG_TYTD_H +#define CONFIG_TYTD_H +int filetimetype=0; //0= Name(%Y%m%d_%H%M%S).mp4 1=Name(n).mp4 2= Name.mp4 dont overwrite 3= Name.mp4 overwrite +char mypcpath[1000]; //ip address and path for remote pltxt +void LoadConfigSettings(); +void SaveConfigSettings(); +char* GetProperName(char* path,GRRLIB_ttfFont* myFont); +#endif