added copytron filemanager and working on flipper
This commit is contained in:
18
source/filemanager.h
Normal file
18
source/filemanager.h
Normal file
@@ -0,0 +1,18 @@
|
||||
#ifndef FILEMANAGER_H
|
||||
#define FILEMANAGER_H
|
||||
#include "copytron.h"
|
||||
/// sets the current destenation.
|
||||
void SetCurrentDestenation(const char*);
|
||||
const char* GetCurrentDestenation();
|
||||
/// sets the current working directory.
|
||||
void SetCurrentWorkingDirectory(const char*);
|
||||
const char* GetCurrentWorkingDriectory();
|
||||
|
||||
void SetCopytronFliper(copytron_flips* flips);
|
||||
|
||||
/// Adds a directory
|
||||
void AddDirectory(const char*);
|
||||
/// Adds a file
|
||||
void AddFile(const char*);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user