Added LICENSE.md and README.md

This commit is contained in:
Michael Nolan 2022-04-17 07:04:03 -05:00
parent de4dec692e
commit 655b3d6d86
2 changed files with 12 additions and 0 deletions

4
source/config.c Normal file
View File

@ -0,0 +1,4 @@
//not implemented yet or maybe never
void LoadConfigSettings(){
}

8
source/config.h Normal file
View File

@ -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