17 lines
279 B
C
17 lines
279 B
C
#ifndef FUSEACTIONS_H
|
|
#define FUSEACTIONS_H
|
|
|
|
#define FSSIZE 10000000
|
|
|
|
extern unsigned char* fs;
|
|
|
|
void mapfs(int fd);
|
|
void unmapfs();
|
|
void formatfs();
|
|
void loadfs();
|
|
void lsfs();
|
|
void addfilefs(char* fname);
|
|
void removefilefs(char* fname);
|
|
void extractfilefs(char* fname);
|
|
|
|
#endif |