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

« back to all changes in this revision

Viewing changes to source/blender/blenloader/intern/readfile.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-05-17 11:47:59 UTC
  • mfrom: (1.2.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20070517114759-yp4ybrnhp2u7pk66
Tags: 2.44-1
* New upstream release.
* Drop debian/patches/01_64bits_stupidity, not needed anymore: as of this
  version blender is 64 bits safe again. Adjust README.Debian accordingly.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $Id: readfile.h,v 1.13 2006/11/27 18:58:33 ton Exp $
 
2
 * $Id: readfile.h,v 1.14 2007/04/28 16:14:59 ton Exp $
3
3
 *
4
4
 * ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
5
5
 *
69
69
        char *compflags;
70
70
        
71
71
        int fileversion;
 
72
        int id_name_offs;               /* used to retrieve ID names from (bhead+1) */
72
73
        
73
74
        struct OldNewMap *datamap;
74
75
        struct OldNewMap *globmap;
119
120
BHead *blo_firstbhead(FileData *fd);
120
121
BHead *blo_nextbhead(FileData *fd, BHead *thisblock);
121
122
BHead *blo_prevbhead(FileData *fd, BHead *thisblock);
122
 
        
 
123
 
 
124
char *bhead_id_name(FileData *fd, BHead *bhead);
 
125
 
123
126
#endif
124
127