about summary refs log tree commit diff
path: root/src/engine/storage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/storage.h')
-rw-r--r--src/engine/storage.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/engine/storage.h b/src/engine/storage.h
index bcfb9ce2..25aa8b3e 100644
--- a/src/engine/storage.h
+++ b/src/engine/storage.h
@@ -12,7 +12,11 @@ public:
 	enum
 	{
 		TYPE_SAVE = 0,
-		TYPE_ALL = -1
+		TYPE_ALL = -1,
+
+		STORAGETYPE_BASIC = 0,
+		STORAGETYPE_SERVER,
+		STORAGETYPE_CLIENT,
 	};
 
 	virtual void ListDirectory(int Type, const char *pPath, FS_LISTDIR_CALLBACK pfnCallback, void *pUser) = 0;
@@ -24,7 +28,7 @@ public:
 	virtual void GetCompletePath(int Type, const char *pDir, char *pBuffer, unsigned BufferSize) = 0;
 };
 
-extern IStorage *CreateStorage(const char *pApplicationName, int NumArgs, const char **ppArguments);
+extern IStorage *CreateStorage(const char *pApplicationName, int StorageType, int NumArgs, const char **ppArguments);
 
 
 #endif