added copytron filemanager and working on flipper
This commit is contained in:
17
source/copytron.h
Normal file
17
source/copytron.h
Normal file
@@ -0,0 +1,17 @@
|
||||
#ifndef COPYTRON_H
|
||||
#define COPYTRON_H
|
||||
typedef struct {
|
||||
char path[255];
|
||||
int file_path_len;
|
||||
} copytron_file;
|
||||
|
||||
typedef struct {
|
||||
copytron_file files[100];
|
||||
int file_count;
|
||||
}copytron_flips;
|
||||
|
||||
copytron_file copytronFileCreate();
|
||||
copytron_flips copytronFlipsCreate();
|
||||
int copytronAdd(copytron_flips* flips, copytron_file* file);
|
||||
int copytronRemove(copytron_flips* flips, copytron_file* file);
|
||||
#endif
|
||||
Reference in New Issue
Block a user