~ubuntu-branches/ubuntu/trusty/blender/trusty-proposed

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/BKE_main.h

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2013-08-14 10:43:49 UTC
  • mfrom: (14.2.19 sid)
  • Revision ID: package-import@ubuntu.com-20130814104349-t1d5mtwkphp12dyj
Tags: 2.68a-3
* Upload to unstable
* debian/: python3.3 Depends simplified
  - debian/control: python3.3 Depends dropped
    for blender-data package
  - 0001-blender_thumbnailer.patch refreshed
* debian/control: libavcodec b-dep versioning dropped

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
        ListBase gpencil;
89
89
        ListBase movieclip;
90
90
        ListBase mask;
 
91
        ListBase linestyle;
91
92
 
92
93
        char id_tag_update[256];
93
94
} Main;
95
96
#define MAIN_VERSION_ATLEAST(main, ver, subver) \
96
97
        ((main)->versionfile > (ver) || (main->versionfile == (ver) && (main)->subversionfile >= (subver)))
97
98
 
 
99
#define MAIN_VERSION_OLDER(main, ver, subver) \
 
100
        ((main)->versionfile < (ver) || (main->versionfile == (ver) && (main)->subversionfile < (subver)))
 
101
 
 
102
        
98
103
#ifdef __cplusplus
99
104
}
100
105
#endif