Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2006-01-05 17:12:07 +0300
committerTon Roosendaal <ton@blender.org>2006-01-05 17:12:07 +0300
commit465ff56d96a46e1dea60632ca271fe084fc8b644 (patch)
treeb63a449a0026e1562a51594eab83213755657782 /source/blender/blenloader/BLO_readfile.h
parent283b0ff7360a45077b173b653833e6310fa6f4b5 (diff)
Orange: Ack! Yesterday's commit to cleanup relative paths forgot to
change the undo code as well... so on any Undo/redo all the libraries got lost!
Diffstat (limited to 'source/blender/blenloader/BLO_readfile.h')
-rw-r--r--source/blender/blenloader/BLO_readfile.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/source/blender/blenloader/BLO_readfile.h b/source/blender/blenloader/BLO_readfile.h
index 2c216f122cc..29650953641 100644
--- a/source/blender/blenloader/BLO_readfile.h
+++ b/source/blender/blenloader/BLO_readfile.h
@@ -116,6 +116,10 @@ BlendFileData* BLO_read_from_file (char *file, BlendReadError *error_r);
*/
BlendFileData* BLO_read_from_memory(void *mem, int memsize, BlendReadError *error_r);
+/**
+ * file name is current file, only for retrieving library data */
+
+BlendFileData *BLO_read_from_memfile(const char *filename, struct MemFile *memfile, BlendReadError *error_r);
/**
* Convert a BlendReadError to a human readable string.
@@ -126,8 +130,6 @@ BlendFileData* BLO_read_from_memory(void *mem, int memsize, BlendReadError *erro
* of @a error.
*/
-BlendFileData *BLO_read_from_memfile(struct MemFile *memfile, BlendReadError *error_r);
-
char*
BLO_bre_as_string(
BlendReadError error);