~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to source/blender/blenloader/BLO_readfile.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $Id: BLO_readfile.h,v 1.8 2004/04/24 20:04:35 ianwill Exp $
 
2
 * $Id: BLO_readfile.h,v 1.9 2004/09/05 13:43:51 ton Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
43
43
struct UserDef;
44
44
struct bScreen;
45
45
struct Scene;
 
46
struct MemFile;
46
47
 
47
48
typedef struct BlendHandle      BlendHandle;
48
49
 
113
114
         * code indicating the cause of the failure.
114
115
         * @return The data of the file.
115
116
         */
116
 
BlendFileData*  BLO_read_from_memory    (void *mem, int memsize, BlendReadError *error_r);
 
117
BlendFileData*  BLO_read_from_memory(void *mem, int memsize, BlendReadError *error_r);
117
118
 
118
119
 
119
120
/**
124
125
 * @return A static human readable string representation
125
126
 * of @a error.
126
127
 */
 
128
 
 
129
BlendFileData *BLO_read_from_memfile(struct MemFile *memfile, BlendReadError *error_r);
 
130
 
127
131
        char*
128
132
BLO_bre_as_string(
129
133
        BlendReadError error);