From affb03cbc4ce71987d0c65c2c87c8aaaf4265f63 Mon Sep 17 00:00:00 2001 From: janwas Date: Thu, 5 Aug 2004 12:47:40 +0000 Subject: [PATCH] add flags param for future use (as in vfs_store) This was SVN commit r909. --- source/lib/res/vfs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/lib/res/vfs.h b/source/lib/res/vfs.h index 823e69820e..06cd311142 100755 --- a/source/lib/res/vfs.h +++ b/source/lib/res/vfs.h @@ -169,7 +169,7 @@ extern ssize_t vfs_io(Handle hf, size_t size, void** p); // load the entire file into memory; return a memory handle to the // buffer and its address/size. output parameters are zeroed on failure. -extern Handle vfs_load(const char* fn, void*& p, size_t& size); +extern Handle vfs_load(const char* fn, void*& p, size_t& size, uint flags = 0); extern int vfs_store(const char* fn, void* p, size_t size, uint flags = 0);