change mwopen's API

This commit is contained in:
Yuichi Nishiwaki 2014-01-16 20:36:22 +09:00
parent 9fbf7e1914
commit 94b2a68f7f
1 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,8 @@ int pic_fclose(pic_file *);
/* memory access */ /* memory access */
pic_file *pic_mropen(const char *, size_t, const char *); pic_file *pic_mropen(const char *, size_t, const char *);
pic_file *pic_mwopen(char **, size_t *); pic_file *pic_mwopen();
const char *pic_getmbuf(pic_file *);
/* direct IO with buffering */ /* direct IO with buffering */
size_t pic_fread(void *, size_t, size_t, pic_file *); size_t pic_fread(void *, size_t, size_t, pic_file *);