//------------------------------------------------------------------------------ // // This code was generated by a tool. // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ using System; namespace BlendFile.DNA { using BlendFile; [DNAClassAttribute(840, "Editing")] public class Editing { [DNAFieldAttribute(0, "ListBase", "*seqbasep", 16)] public ListBase ptr_seqbasep; [DNAFieldAttribute(1, "ListBase", "*displayed_channels", 16)] public ListBase ptr_displayed_channels; [DNAFieldAttribute(2, "void", "*_pad0", 0)] public object ptr__pad0; [DNAFieldAttribute(3, "ListBase", "seqbase", 16)] public ListBase seqbase; [DNAFieldAttribute(4, "ListBase", "metastack", 16)] public ListBase metastack; [DNAFieldAttribute(5, "ListBase", "channels", 16)] public ListBase channels; [DNAFieldAttribute(6, "Sequence", "*act_seq", 464)] public Sequence ptr_act_seq; [DNAFieldAttribute(7, "char", "act_imagedir[1024]", 1)] public char[] act_imagedir = new System.Char[1024]; [DNAFieldAttribute(8, "char", "act_sounddir[1024]", 1)] public char[] act_sounddir = new System.Char[1024]; [DNAFieldAttribute(9, "char", "proxy_dir[1024]", 1)] public char[] proxy_dir = new System.Char[1024]; [DNAFieldAttribute(10, "int", "proxy_storage", 4)] public int proxy_storage; [DNAFieldAttribute(11, "int", "over_ofs", 4)] public int over_ofs; [DNAFieldAttribute(12, "int", "over_cfra", 4)] public int over_cfra; [DNAFieldAttribute(13, "int", "over_flag", 4)] public int over_flag; [DNAFieldAttribute(14, "rctf", "over_border", 16)] public rctf over_border; [DNAFieldAttribute(15, "int", "show_missing_media_flag", 4)] public int show_missing_media_flag; [DNAFieldAttribute(16, "int", "_pad1", 4)] public int _pad1; [DNAFieldAttribute(17, "SeqCache", "*cache", 0)] public SeqCache ptr_cache; [DNAFieldAttribute(18, "float", "recycle_max_cost", 4)] public float recycle_max_cost; [DNAFieldAttribute(19, "int", "cache_flag", 4)] public int cache_flag; [DNAFieldAttribute(20, "PrefetchJob", "*prefetch_job", 0)] public PrefetchJob ptr_prefetch_job; [DNAFieldAttribute(21, "int64_t", "disk_cache_timestamp", 8)] public long disk_cache_timestamp; [DNAFieldAttribute(22, "EditingRuntime", "runtime", 32)] public EditingRuntime runtime; public Editing() { this.ptr_seqbasep = default; this.ptr_displayed_channels = default; this.ptr__pad0 = default; this.seqbase = default; this.metastack = default; this.channels = default; this.ptr_act_seq = default; this.act_imagedir = default; this.act_sounddir = default; this.proxy_dir = default; this.proxy_storage = default; this.over_ofs = default; this.over_cfra = default; this.over_flag = default; this.over_border = default; this.show_missing_media_flag = default; this._pad1 = default; this.ptr_cache = default; this.recycle_max_cost = default; this.cache_flag = default; this.ptr_prefetch_job = default; this.disk_cache_timestamp = default; this.runtime = default; } public Editing( ListBase ptr_seqbasep, ListBase ptr_displayed_channels, object ptr__pad0, ListBase seqbase, ListBase metastack, ListBase channels, Sequence ptr_act_seq, char[] act_imagedir, char[] act_sounddir, char[] proxy_dir, int proxy_storage, int over_ofs, int over_cfra, int over_flag, rctf over_border, int show_missing_media_flag, int _pad1, SeqCache ptr_cache, float recycle_max_cost, int cache_flag, PrefetchJob ptr_prefetch_job, long disk_cache_timestamp, EditingRuntime runtime) { this.ptr_seqbasep = ptr_seqbasep; this.ptr_displayed_channels = ptr_displayed_channels; this.ptr__pad0 = ptr__pad0; this.seqbase = seqbase; this.metastack = metastack; this.channels = channels; this.ptr_act_seq = ptr_act_seq; this.act_imagedir = act_imagedir; this.act_sounddir = act_sounddir; this.proxy_dir = proxy_dir; this.proxy_storage = proxy_storage; this.over_ofs = over_ofs; this.over_cfra = over_cfra; this.over_flag = over_flag; this.over_border = over_border; this.show_missing_media_flag = show_missing_media_flag; this._pad1 = _pad1; this.ptr_cache = ptr_cache; this.recycle_max_cost = recycle_max_cost; this.cache_flag = cache_flag; this.ptr_prefetch_job = ptr_prefetch_job; this.disk_cache_timestamp = disk_cache_timestamp; this.runtime = runtime; } } }