Regenerated codefiles

This commit is contained in:
Samuele Lorefice
2025-03-04 18:48:04 +01:00
parent 8bbfb49720
commit 8e4eac0568
937 changed files with 16011 additions and 16181 deletions

View File

@@ -15,44 +15,44 @@ namespace BlendFile.DNA {
[DNAClassAttribute(1006, "bUserExtensionRepo", 2192)]
public class bUserExtensionRepo {
[DNAFieldAttribute(0, "bUserExtensionRepo", "*next", "bUserExtensionRepo", 8, true, 0)]
public bUserExtensionRepo ptr_next;
[DNAFieldAttribute(1, "bUserExtensionRepo", "*prev", "bUserExtensionRepo", 8, true, 8)]
public bUserExtensionRepo ptr_prev;
[DNAFieldAttribute(2, "char", "name[64]", "System.Char[]", 64, false, 16)]
[DNAFieldAttribute(8, "bUserExtensionRepo", 0, "*next", "bUserExtensionRepo", true, 0)]
public bUserExtensionRepo next;
[DNAFieldAttribute(8, "bUserExtensionRepo", 1, "*prev", "bUserExtensionRepo", true, 8)]
public bUserExtensionRepo prev;
[DNAFieldAttribute(64, "char", 2, "name[64]", "System.Char[]", false, 16)]
public char[] name = new System.Char[64];
[DNAFieldAttribute(3, "char", "module[48]", "System.Char[]", 48, false, 80)]
[DNAFieldAttribute(48, "char", 3, "module[48]", "System.Char[]", false, 80)]
public char[] module = new System.Char[48];
[DNAFieldAttribute(4, "char", "*access_token", "char", 8, true, 128)]
public char ptr_access_token;
[DNAFieldAttribute(5, "char", "custom_dirpath[1024]", "System.Char[]", 1024, false, 136)]
[DNAFieldAttribute(8, "char", 4, "*access_token", "char", true, 128)]
public char access_token;
[DNAFieldAttribute(1024, "char", 5, "custom_dirpath[1024]", "System.Char[]", false, 136)]
public char[] custom_dirpath = new System.Char[1024];
[DNAFieldAttribute(6, "char", "remote_url[1024]", "System.Char[]", 1024, false, 1160)]
[DNAFieldAttribute(1024, "char", 6, "remote_url[1024]", "System.Char[]", false, 1160)]
public char[] remote_url = new System.Char[1024];
[DNAFieldAttribute(7, "uchar", "flag", "uchar", 1, false, 2184)]
[DNAFieldAttribute(1, "uchar", 7, "flag", "uchar", false, 2184)]
public byte flag;
[DNAFieldAttribute(8, "uchar", "source", "uchar", 1, false, 2185)]
[DNAFieldAttribute(1, "uchar", 8, "source", "uchar", false, 2185)]
public byte source;
[DNAFieldAttribute(9, "char", "_pad0[6]", "System.Char[]", 6, false, 2186)]
[DNAFieldAttribute(6, "char", 9, "_pad0[6]", "System.Char[]", false, 2186)]
public char[] _pad0 = new System.Char[6];
public bUserExtensionRepo() {
this.ptr_next = default;
this.ptr_prev = default;
this.next = default;
this.prev = default;
this.name = default;
this.module = default;
this.ptr_access_token = default;
this.access_token = default;
this.custom_dirpath = default;
this.remote_url = default;
this.flag = default;
this.source = default;
this._pad0 = default;
}
public bUserExtensionRepo(bUserExtensionRepo ptr_next, bUserExtensionRepo ptr_prev, char[] name, char[] module, char ptr_access_token, char[] custom_dirpath, char[] remote_url, byte flag, byte source, char[] _pad0) {
this.ptr_next = ptr_next;
this.ptr_prev = ptr_prev;
public bUserExtensionRepo(bUserExtensionRepo next, bUserExtensionRepo prev, char[] name, char[] module, char access_token, char[] custom_dirpath, char[] remote_url, byte flag, byte source, char[] _pad0) {
this.next = next;
this.prev = prev;
this.name = name;
this.module = module;
this.ptr_access_token = ptr_access_token;
this.access_token = access_token;
this.custom_dirpath = custom_dirpath;
this.remote_url = remote_url;
this.flag = flag;