ddnet/src/engine/storage.h

30 lines
1 KiB
C
Raw Normal View History

2010-11-20 10:37:14 +00:00
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
/* If you are missing that file, acquire a complete release at teeworlds.com. */
2010-05-29 07:25:38 +00:00
#ifndef ENGINE_STORAGE_H
#define ENGINE_STORAGE_H
#include "kernel.h"
class IStorage : public IInterface
{
MACRO_INTERFACE("storage", 0)
public:
enum
{
2010-10-06 21:07:35 +00:00
TYPE_SAVE = 0,
TYPE_ALL = -1
2010-05-29 07:25:38 +00:00
};
2010-10-06 21:07:35 +00:00
virtual void ListDirectory(int Type, const char *pPath, FS_LISTDIR_CALLBACK pfnCallback, void *pUser) = 0;
virtual IOHANDLE OpenFile(const char *pFilename, int Flags, int Type, char *pBuffer = 0, int BufferSize = 0) = 0;
virtual bool FindFile(const char *pFilename, const char *pPath, int Type, char *pBuffer, int BufferSize) = 0;
2010-10-06 21:07:35 +00:00
virtual bool RemoveFile(const char *pFilename, int Type) = 0;
virtual bool RenameFile(const char* pOldFilename, const char* pNewFilename, int Type) = 0;
virtual bool CreateFolder(const char *pFoldername, int Type) = 0;
2010-05-29 07:25:38 +00:00
};
2010-08-05 18:26:03 +00:00
extern IStorage *CreateStorage(const char *pApplicationName, int NumArgs, const char **ppArguments);
2010-05-29 07:25:38 +00:00
#endif