17 lines
325 B
C
17 lines
325 B
C
#ifndef FUSEACTIONS_H
|
|
#define FUSEACTIONS_H
|
|
|
|
#include "fuse.h"
|
|
|
|
#define FSSIZE 10000000
|
|
|
|
void MapFS(FileSystemStruct* fs, int fd);
|
|
void UnmapFS(FileSystemStruct* fs);
|
|
void FormatFS();
|
|
void LoadFS();
|
|
void ListFS();
|
|
void AddFileToFS(char* fname);
|
|
void RemoveFileFromFS(char* fname);
|
|
void ExtractFileFromFS(char* fname);
|
|
|
|
#endif |