48 lines
1.9 KiB
C#
48 lines
1.9 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
using System;
|
|
|
|
|
|
namespace BlendFile.DNA {
|
|
using BlendFile;
|
|
|
|
[DNAClassAttribute(942, "FileFolderHistory", 56)]
|
|
public class FileFolderHistory {
|
|
[DNAFieldAttribute(0, "FileFolderLists", "*next", "FileFolderLists", 8, true)]
|
|
public FileFolderLists ptr_next;
|
|
[DNAFieldAttribute(1, "FileFolderLists", "*prev", "FileFolderLists", 8, true)]
|
|
public FileFolderLists ptr_prev;
|
|
[DNAFieldAttribute(2, "char", "browse_mode", "char", 1, false)]
|
|
public char browse_mode;
|
|
[DNAFieldAttribute(3, "char", "_pad[7]", "System.Char[]", 7, false)]
|
|
public char[] _pad = new System.Char[7];
|
|
[DNAFieldAttribute(4, "ListBase", "folders_prev", "ListBase", 16, false)]
|
|
public ListBase folders_prev;
|
|
[DNAFieldAttribute(5, "ListBase", "folders_next", "ListBase", 16, false)]
|
|
public ListBase folders_next;
|
|
public FileFolderHistory() {
|
|
this.ptr_next = default;
|
|
this.ptr_prev = default;
|
|
this.browse_mode = default;
|
|
this._pad = default;
|
|
this.folders_prev = default;
|
|
this.folders_next = default;
|
|
}
|
|
public FileFolderHistory(FileFolderLists ptr_next, FileFolderLists ptr_prev, char browse_mode, char[] _pad, ListBase folders_prev, ListBase folders_next) {
|
|
this.ptr_next = ptr_next;
|
|
this.ptr_prev = ptr_prev;
|
|
this.browse_mode = browse_mode;
|
|
this._pad = _pad;
|
|
this.folders_prev = folders_prev;
|
|
this.folders_next = folders_next;
|
|
}
|
|
}
|
|
}
|