From 66006c0172d9277a3776d8088056da7fb66c15bd Mon Sep 17 00:00:00 2001 From: jhett12321 <10942655+jhett12321@users.noreply.github.com> Date: Tue, 4 Jul 2023 21:07:13 +0000 Subject: [PATCH] Update APIs (NWNX: 993ec66d, NWN: 8193.35-40). --- src/main/API/CExoString.cs | 24 +- src/main/API/CNWSModule.cs | 22 +- src/main/API/CNWSync.cs | 940 ++------------------------------- src/main/API/NWNXLibPINVOKE.cs | 577 +++----------------- src/main/API/SHA1.cs | 14 +- 5 files changed, 148 insertions(+), 1429 deletions(-) diff --git a/src/main/API/CExoString.cs b/src/main/API/CExoString.cs index b22cbf0..0cfcf79 100644 --- a/src/main/API/CExoString.cs +++ b/src/main/API/CExoString.cs @@ -401,33 +401,33 @@ public VectorCExoString Split(CExoString delimiter) { return ret; } - public static CExoString FormatBytes(ulong param_1) { - CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatBytes(param_1), true); + public static CExoString FormatBytes(ulong bytes) { + CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatBytes(bytes), true); return ret; } - public static CExoString FormatDuration(ulong param_1, int param_2, int param_3, bool param_4, byte* param_5) { - CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatDuration__SWIG_0(param_1, param_2, param_3, param_4, param_5), true); + public static CExoString FormatDuration(ulong span, int compact_levels, int min_level, bool label_fields, byte* separator) { + CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatDuration__SWIG_0(span, compact_levels, min_level, label_fields, separator), true); return ret; } - public static CExoString FormatDuration(ulong param_1, int param_2, int param_3, bool param_4) { - CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatDuration__SWIG_1(param_1, param_2, param_3, param_4), true); + public static CExoString FormatDuration(ulong span, int compact_levels, int min_level, bool label_fields) { + CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatDuration__SWIG_1(span, compact_levels, min_level, label_fields), true); return ret; } - public static CExoString FormatDuration(ulong param_1, int param_2, int param_3) { - CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatDuration__SWIG_2(param_1, param_2, param_3), true); + public static CExoString FormatDuration(ulong span, int compact_levels, int min_level) { + CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatDuration__SWIG_2(span, compact_levels, min_level), true); return ret; } - public static CExoString FormatDuration(ulong param_1, int param_2) { - CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatDuration__SWIG_3(param_1, param_2), true); + public static CExoString FormatDuration(ulong span, int compact_levels) { + CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatDuration__SWIG_3(span, compact_levels), true); return ret; } - public static CExoString FormatDuration(ulong param_1) { - CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatDuration__SWIG_4(param_1), true); + public static CExoString FormatDuration(ulong span) { + CExoString ret = new CExoString(NWNXLibPINVOKE.CExoString_FormatDuration__SWIG_4(span), true); return ret; } diff --git a/src/main/API/CNWSModule.cs b/src/main/API/CNWSModule.cs index a8cfb4a..7077373 100644 --- a/src/main/API/CNWSModule.cs +++ b/src/main/API/CNWSModule.cs @@ -1329,8 +1329,26 @@ public int InterAreaDFS(int level, int depth, CPathfindInformation pcPathfindInf return retVal; } - public uint LoadModuleStart(CExoString param_1, int param_2, int param_3, Advertisement param_4) { - uint retVal = NWNXLibPINVOKE.CNWSModule_LoadModuleStart(swigCPtr, CExoString.getCPtr(param_1), param_2, param_3, Advertisement.getCPtr(param_4)); + public uint LoadModuleStart(CExoString sModuleName, int bIsSaveGame, int nSourceType, Advertisement nwsyncModuleSourceAdvert) { + uint retVal = NWNXLibPINVOKE.CNWSModule_LoadModuleStart__SWIG_0(swigCPtr, CExoString.getCPtr(sModuleName), bIsSaveGame, nSourceType, Advertisement.getCPtr(nwsyncModuleSourceAdvert)); + if (NWNXLibPINVOKE.SWIGPendingException.Pending) throw NWNXLibPINVOKE.SWIGPendingException.Retrieve(); + return retVal; + } + + public uint LoadModuleStart(CExoString sModuleName, int bIsSaveGame, int nSourceType) { + uint retVal = NWNXLibPINVOKE.CNWSModule_LoadModuleStart__SWIG_1(swigCPtr, CExoString.getCPtr(sModuleName), bIsSaveGame, nSourceType); + if (NWNXLibPINVOKE.SWIGPendingException.Pending) throw NWNXLibPINVOKE.SWIGPendingException.Retrieve(); + return retVal; + } + + public uint LoadModuleStart(CExoString sModuleName, int bIsSaveGame) { + uint retVal = NWNXLibPINVOKE.CNWSModule_LoadModuleStart__SWIG_2(swigCPtr, CExoString.getCPtr(sModuleName), bIsSaveGame); + if (NWNXLibPINVOKE.SWIGPendingException.Pending) throw NWNXLibPINVOKE.SWIGPendingException.Retrieve(); + return retVal; + } + + public uint LoadModuleStart(CExoString sModuleName) { + uint retVal = NWNXLibPINVOKE.CNWSModule_LoadModuleStart__SWIG_3(swigCPtr, CExoString.getCPtr(sModuleName)); if (NWNXLibPINVOKE.SWIGPendingException.Pending) throw NWNXLibPINVOKE.SWIGPendingException.Retrieve(); return retVal; } diff --git a/src/main/API/CNWSync.cs b/src/main/API/CNWSync.cs index 6b504c5..d22d4ca 100644 --- a/src/main/API/CNWSync.cs +++ b/src/main/API/CNWSync.cs @@ -203,981 +203,125 @@ public override int GetHashCode() { return !Equals(left, right); } - public byte field0_0x0 { + public SHA1 m_sha1 { set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field0_0x0_set(swigCPtr, value); + NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_sha1_set(swigCPtr, SHA1.getCPtr(value)); } get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field0_0x0_get(swigCPtr); - return retVal; - } - - } - - public long field1_0x1 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field1_0x1_set(swigCPtr, value); - } - get { - long ret = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field1_0x1_get(swigCPtr); + global::System.IntPtr cPtr = NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_sha1_get(swigCPtr); + SHA1 ret = (cPtr == global::System.IntPtr.Zero) ? null : new SHA1(cPtr, false); return ret; } } - public long field2_0x9 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field2_0x9_set(swigCPtr, value); - } - get { - long ret = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field2_0x9_get(swigCPtr); - return ret; - } - } - - public int field3_0x11 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field3_0x11_set(swigCPtr, value); - } - get { - int retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field3_0x11_get(swigCPtr); - return retVal; - } - - } - - public byte field4_0x15 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field4_0x15_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field4_0x15_get(swigCPtr); - return retVal; - } - - } - - public byte field5_0x16 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field5_0x16_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field5_0x16_get(swigCPtr); - return retVal; - } - - } - - public byte field6_0x17 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field6_0x17_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field6_0x17_get(swigCPtr); - return retVal; - } - - } - - public byte field7_0x18 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field7_0x18_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field7_0x18_get(swigCPtr); - return retVal; - } - - } - - public byte field8_0x19 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field8_0x19_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field8_0x19_get(swigCPtr); - return retVal; - } - - } - - public byte field9_0x1a { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field9_0x1a_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field9_0x1a_get(swigCPtr); - return retVal; - } - - } - - public byte field10_0x1b { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field10_0x1b_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field10_0x1b_get(swigCPtr); - return retVal; - } - - } - - public byte field11_0x1c { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field11_0x1c_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field11_0x1c_get(swigCPtr); - return retVal; - } - - } - - public byte field12_0x1d { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field12_0x1d_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field12_0x1d_get(swigCPtr); - return retVal; - } - - } - - public byte field13_0x1e { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field13_0x1e_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field13_0x1e_get(swigCPtr); - return retVal; - } - - } - - public byte field14_0x1f { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field14_0x1f_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field14_0x1f_get(swigCPtr); - return retVal; - } - - } - - public byte field15_0x20 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field15_0x20_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field15_0x20_get(swigCPtr); - return retVal; - } - - } - - public byte field16_0x21 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field16_0x21_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field16_0x21_get(swigCPtr); - return retVal; - } - - } - - public byte field17_0x22 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field17_0x22_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field17_0x22_get(swigCPtr); - return retVal; - } - - } - - public byte field18_0x23 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field18_0x23_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field18_0x23_get(swigCPtr); - return retVal; - } - - } - - public byte field19_0x24 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field19_0x24_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field19_0x24_get(swigCPtr); - return retVal; - } - - } - - public byte field20_0x25 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field20_0x25_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field20_0x25_get(swigCPtr); - return retVal; - } - - } - - public byte field21_0x26 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field21_0x26_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field21_0x26_get(swigCPtr); - return retVal; - } - - } - - public byte field22_0x27 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field22_0x27_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field22_0x27_get(swigCPtr); - return retVal; - } - - } - - public byte field23_0x28 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field23_0x28_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field23_0x28_get(swigCPtr); - return retVal; - } - - } - - public byte field24_0x29 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field24_0x29_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field24_0x29_get(swigCPtr); - return retVal; - } - - } - - public byte field25_0x2a { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field25_0x2a_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field25_0x2a_get(swigCPtr); - return retVal; - } - - } - - public byte field26_0x2b { + public uint m_hashTreeDepth { set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field26_0x2b_set(swigCPtr, value); + NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_hashTreeDepth_set(swigCPtr, value); } get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field26_0x2b_get(swigCPtr); + uint retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_hashTreeDepth_get(swigCPtr); return retVal; } } - public byte field27_0x2c { + public CExoString m_moduleName { set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field27_0x2c_set(swigCPtr, value); + NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_moduleName_set(swigCPtr, CExoString.getCPtr(value)); } get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field27_0x2c_get(swigCPtr); - return retVal; - } - - } - - public byte field28_0x2d { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field28_0x2d_set(swigCPtr, value); + global::System.IntPtr cPtr = NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_moduleName_get(swigCPtr); + CExoString ret = (cPtr == global::System.IntPtr.Zero) ? null : new CExoString(cPtr, false); + return ret; } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field28_0x2d_get(swigCPtr); - return retVal; - } - } - public byte field29_0x2e { + public CExoString m_description { set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field29_0x2e_set(swigCPtr, value); + NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_description_set(swigCPtr, CExoString.getCPtr(value)); } get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field29_0x2e_get(swigCPtr); - return retVal; - } - - } - - public byte field30_0x2f { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field30_0x2f_set(swigCPtr, value); + global::System.IntPtr cPtr = NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_description_get(swigCPtr); + CExoString ret = (cPtr == global::System.IntPtr.Zero) ? null : new CExoString(cPtr, false); + return ret; } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field30_0x2f_get(swigCPtr); - return retVal; - } - } - public byte field31_0x30 { + public CUUID m_uuid { set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field31_0x30_set(swigCPtr, value); + NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_uuid_set(swigCPtr, CUUID.getCPtr(value)); } get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field31_0x30_get(swigCPtr); - return retVal; - } - - } - - public byte field32_0x31 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field32_0x31_set(swigCPtr, value); + global::System.IntPtr cPtr = NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_uuid_get(swigCPtr); + CUUID ret = (cPtr == global::System.IntPtr.Zero) ? null : new CUUID(cPtr, false); + return ret; } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field32_0x31_get(swigCPtr); - return retVal; - } - } - public byte field33_0x32 { + public uint m_groupId { set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field33_0x32_set(swigCPtr, value); + NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_groupId_set(swigCPtr, value); } get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field33_0x32_get(swigCPtr); + uint retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_groupId_get(swigCPtr); return retVal; } } - public byte field34_0x33 { + public bool m_includesModuleContents { set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field34_0x33_set(swigCPtr, value); + NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_includesModuleContents_set(swigCPtr, value); } get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field34_0x33_get(swigCPtr); - return retVal; - } - - } - - public byte field35_0x34 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field35_0x34_set(swigCPtr, value); + bool ret = NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_includesModuleContents_get(swigCPtr); + return ret; } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field35_0x34_get(swigCPtr); - return retVal; - } - } - public byte field36_0x35 { + public bool m_includesClientContents { set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field36_0x35_set(swigCPtr, value); + NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_includesClientContents_set(swigCPtr, value); } get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field36_0x35_get(swigCPtr); - return retVal; - } - - } - - public byte field37_0x36 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field37_0x36_set(swigCPtr, value); + bool ret = NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_includesClientContents_get(swigCPtr); + return ret; } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field37_0x36_get(swigCPtr); - return retVal; - } - } - public byte field38_0x37 { + public uint m_totalBytes { set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field38_0x37_set(swigCPtr, value); + NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_totalBytes_set(swigCPtr, value); } get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field38_0x37_get(swigCPtr); + uint retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_totalBytes_get(swigCPtr); return retVal; } } - public byte field39_0x38 { + public uint m_totalFiles { set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field39_0x38_set(swigCPtr, value); + NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_totalFiles_set(swigCPtr, value); } get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field39_0x38_get(swigCPtr); + uint retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_totalFiles_get(swigCPtr); return retVal; } } - public byte field40_0x39 { + public uint m_createdAt { set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field40_0x39_set(swigCPtr, value); + NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_createdAt_set(swigCPtr, value); } get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field40_0x39_get(swigCPtr); + uint retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_m_createdAt_get(swigCPtr); return retVal; } } - public byte field41_0x3a { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field41_0x3a_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field41_0x3a_get(swigCPtr); - return retVal; - } - - } - - public byte field42_0x3b { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field42_0x3b_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field42_0x3b_get(swigCPtr); - return retVal; - } - - } - - public byte field43_0x3c { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field43_0x3c_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field43_0x3c_get(swigCPtr); - return retVal; - } - - } - - public byte field44_0x3d { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field44_0x3d_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field44_0x3d_get(swigCPtr); - return retVal; - } - - } - - public byte field45_0x3e { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field45_0x3e_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field45_0x3e_get(swigCPtr); - return retVal; - } - - } - - public byte field46_0x3f { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field46_0x3f_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field46_0x3f_get(swigCPtr); - return retVal; - } - - } - - public byte field47_0x40 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field47_0x40_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field47_0x40_get(swigCPtr); - return retVal; - } - - } - - public byte field48_0x41 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field48_0x41_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field48_0x41_get(swigCPtr); - return retVal; - } - - } - - public byte field49_0x42 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field49_0x42_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field49_0x42_get(swigCPtr); - return retVal; - } - - } - - public byte field50_0x43 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field50_0x43_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field50_0x43_get(swigCPtr); - return retVal; - } - - } - - public byte field51_0x44 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field51_0x44_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field51_0x44_get(swigCPtr); - return retVal; - } - - } - - public byte field52_0x45 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field52_0x45_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field52_0x45_get(swigCPtr); - return retVal; - } - - } - - public byte field53_0x46 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field53_0x46_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field53_0x46_get(swigCPtr); - return retVal; - } - - } - - public byte field54_0x47 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field54_0x47_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field54_0x47_get(swigCPtr); - return retVal; - } - - } - - public byte field55_0x48 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field55_0x48_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field55_0x48_get(swigCPtr); - return retVal; - } - - } - - public byte field56_0x49 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field56_0x49_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field56_0x49_get(swigCPtr); - return retVal; - } - - } - - public byte field57_0x4a { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field57_0x4a_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field57_0x4a_get(swigCPtr); - return retVal; - } - - } - - public byte field58_0x4b { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field58_0x4b_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field58_0x4b_get(swigCPtr); - return retVal; - } - - } - - public byte field59_0x4c { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field59_0x4c_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field59_0x4c_get(swigCPtr); - return retVal; - } - - } - - public byte field60_0x4d { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field60_0x4d_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field60_0x4d_get(swigCPtr); - return retVal; - } - - } - - public byte field61_0x4e { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field61_0x4e_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field61_0x4e_get(swigCPtr); - return retVal; - } - - } - - public byte field62_0x4f { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field62_0x4f_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field62_0x4f_get(swigCPtr); - return retVal; - } - - } - - public byte field63_0x50 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field63_0x50_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field63_0x50_get(swigCPtr); - return retVal; - } - - } - - public byte field64_0x51 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field64_0x51_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field64_0x51_get(swigCPtr); - return retVal; - } - - } - - public byte field65_0x52 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field65_0x52_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field65_0x52_get(swigCPtr); - return retVal; - } - - } - - public byte field66_0x53 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field66_0x53_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field66_0x53_get(swigCPtr); - return retVal; - } - - } - - public byte field67_0x54 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field67_0x54_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field67_0x54_get(swigCPtr); - return retVal; - } - - } - - public byte field68_0x55 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field68_0x55_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field68_0x55_get(swigCPtr); - return retVal; - } - - } - - public byte field69_0x56 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field69_0x56_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field69_0x56_get(swigCPtr); - return retVal; - } - - } - - public byte field70_0x57 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field70_0x57_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field70_0x57_get(swigCPtr); - return retVal; - } - - } - - public byte field71_0x58 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field71_0x58_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field71_0x58_get(swigCPtr); - return retVal; - } - - } - - public byte field72_0x59 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field72_0x59_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field72_0x59_get(swigCPtr); - return retVal; - } - - } - - public byte field73_0x5a { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field73_0x5a_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field73_0x5a_get(swigCPtr); - return retVal; - } - - } - - public byte field74_0x5b { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field74_0x5b_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field74_0x5b_get(swigCPtr); - return retVal; - } - - } - - public byte field75_0x5c { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field75_0x5c_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field75_0x5c_get(swigCPtr); - return retVal; - } - - } - - public byte field76_0x5d { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field76_0x5d_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field76_0x5d_get(swigCPtr); - return retVal; - } - - } - - public byte field77_0x5e { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field77_0x5e_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field77_0x5e_get(swigCPtr); - return retVal; - } - - } - - public byte field78_0x5f { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field78_0x5f_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field78_0x5f_get(swigCPtr); - return retVal; - } - - } - - public byte field79_0x60 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field79_0x60_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field79_0x60_get(swigCPtr); - return retVal; - } - - } - - public byte field80_0x61 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field80_0x61_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field80_0x61_get(swigCPtr); - return retVal; - } - - } - - public byte field81_0x62 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field81_0x62_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field81_0x62_get(swigCPtr); - return retVal; - } - - } - - public byte field82_0x63 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field82_0x63_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field82_0x63_get(swigCPtr); - return retVal; - } - - } - - public byte field83_0x64 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field83_0x64_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field83_0x64_get(swigCPtr); - return retVal; - } - - } - - public byte field84_0x65 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field84_0x65_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field84_0x65_get(swigCPtr); - return retVal; - } - - } - - public byte field85_0x66 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field85_0x66_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field85_0x66_get(swigCPtr); - return retVal; - } - - } - - public byte field86_0x67 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field86_0x67_set(swigCPtr, value); - } - get { - byte retVal = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field86_0x67_get(swigCPtr); - return retVal; - } - - } - - public long field87_0x68 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field87_0x68_set(swigCPtr, value); - } - get { - long ret = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field87_0x68_get(swigCPtr); - return ret; - } - } - - public long field88_0x70 { - set { - NWNXLibPINVOKE.CNWSync_ManifestMetaData_field88_0x70_set(swigCPtr, value); - } - get { - long ret = NWNXLibPINVOKE.CNWSync_ManifestMetaData_field88_0x70_get(swigCPtr); - return ret; - } - } - public ManifestMetaData() : this(NWNXLibPINVOKE.new_CNWSync_ManifestMetaData(), true) { } diff --git a/src/main/API/NWNXLibPINVOKE.cs b/src/main/API/NWNXLibPINVOKE.cs index 3f6d988..895ba42 100644 --- a/src/main/API/NWNXLibPINVOKE.cs +++ b/src/main/API/NWNXLibPINVOKE.cs @@ -25054,8 +25054,17 @@ static NWNXLibPINVOKE() { [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSModule_InterAreaDFS___")] public static extern int CNWSModule_InterAreaDFS(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3, global::System.Runtime.InteropServices.HandleRef jarg4); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSModule_LoadModuleStart___")] - public static extern uint CNWSModule_LoadModuleStart(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSModule_LoadModuleStart__SWIG_0___")] + public static extern uint CNWSModule_LoadModuleStart__SWIG_0(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4, global::System.Runtime.InteropServices.HandleRef jarg5); + + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSModule_LoadModuleStart__SWIG_1___")] + public static extern uint CNWSModule_LoadModuleStart__SWIG_1(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3, int jarg4); + + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSModule_LoadModuleStart__SWIG_2___")] + public static extern uint CNWSModule_LoadModuleStart__SWIG_2(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2, int jarg3); + + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSModule_LoadModuleStart__SWIG_3___")] + public static extern uint CNWSModule_LoadModuleStart__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSModule_LoadModuleInProgress___")] public static extern uint CNWSModule_LoadModuleInProgress(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2, int jarg3); @@ -29255,539 +29264,71 @@ static NWNXLibPINVOKE() { [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_m_tmp2_get___")] public static extern uint CNWSync_m_tmp2_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field0_0x0_set___")] - public static extern void CNWSync_ManifestMetaData_field0_0x0_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field0_0x0_get___")] - public static extern byte CNWSync_ManifestMetaData_field0_0x0_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field1_0x1_set___")] - public static extern void CNWSync_ManifestMetaData_field1_0x1_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field1_0x1_get___")] - public static extern long CNWSync_ManifestMetaData_field1_0x1_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field2_0x9_set___")] - public static extern void CNWSync_ManifestMetaData_field2_0x9_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field2_0x9_get___")] - public static extern long CNWSync_ManifestMetaData_field2_0x9_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field3_0x11_set___")] - public static extern void CNWSync_ManifestMetaData_field3_0x11_set(global::System.Runtime.InteropServices.HandleRef jarg1, int jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field3_0x11_get___")] - public static extern int CNWSync_ManifestMetaData_field3_0x11_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field4_0x15_set___")] - public static extern void CNWSync_ManifestMetaData_field4_0x15_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field4_0x15_get___")] - public static extern byte CNWSync_ManifestMetaData_field4_0x15_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field5_0x16_set___")] - public static extern void CNWSync_ManifestMetaData_field5_0x16_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field5_0x16_get___")] - public static extern byte CNWSync_ManifestMetaData_field5_0x16_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field6_0x17_set___")] - public static extern void CNWSync_ManifestMetaData_field6_0x17_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field6_0x17_get___")] - public static extern byte CNWSync_ManifestMetaData_field6_0x17_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field7_0x18_set___")] - public static extern void CNWSync_ManifestMetaData_field7_0x18_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field7_0x18_get___")] - public static extern byte CNWSync_ManifestMetaData_field7_0x18_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field8_0x19_set___")] - public static extern void CNWSync_ManifestMetaData_field8_0x19_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field8_0x19_get___")] - public static extern byte CNWSync_ManifestMetaData_field8_0x19_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field9_0x1a_set___")] - public static extern void CNWSync_ManifestMetaData_field9_0x1a_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field9_0x1a_get___")] - public static extern byte CNWSync_ManifestMetaData_field9_0x1a_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field10_0x1b_set___")] - public static extern void CNWSync_ManifestMetaData_field10_0x1b_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field10_0x1b_get___")] - public static extern byte CNWSync_ManifestMetaData_field10_0x1b_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field11_0x1c_set___")] - public static extern void CNWSync_ManifestMetaData_field11_0x1c_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field11_0x1c_get___")] - public static extern byte CNWSync_ManifestMetaData_field11_0x1c_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field12_0x1d_set___")] - public static extern void CNWSync_ManifestMetaData_field12_0x1d_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field12_0x1d_get___")] - public static extern byte CNWSync_ManifestMetaData_field12_0x1d_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field13_0x1e_set___")] - public static extern void CNWSync_ManifestMetaData_field13_0x1e_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field13_0x1e_get___")] - public static extern byte CNWSync_ManifestMetaData_field13_0x1e_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field14_0x1f_set___")] - public static extern void CNWSync_ManifestMetaData_field14_0x1f_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field14_0x1f_get___")] - public static extern byte CNWSync_ManifestMetaData_field14_0x1f_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field15_0x20_set___")] - public static extern void CNWSync_ManifestMetaData_field15_0x20_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field15_0x20_get___")] - public static extern byte CNWSync_ManifestMetaData_field15_0x20_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field16_0x21_set___")] - public static extern void CNWSync_ManifestMetaData_field16_0x21_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field16_0x21_get___")] - public static extern byte CNWSync_ManifestMetaData_field16_0x21_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field17_0x22_set___")] - public static extern void CNWSync_ManifestMetaData_field17_0x22_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field17_0x22_get___")] - public static extern byte CNWSync_ManifestMetaData_field17_0x22_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field18_0x23_set___")] - public static extern void CNWSync_ManifestMetaData_field18_0x23_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field18_0x23_get___")] - public static extern byte CNWSync_ManifestMetaData_field18_0x23_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field19_0x24_set___")] - public static extern void CNWSync_ManifestMetaData_field19_0x24_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field19_0x24_get___")] - public static extern byte CNWSync_ManifestMetaData_field19_0x24_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field20_0x25_set___")] - public static extern void CNWSync_ManifestMetaData_field20_0x25_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field20_0x25_get___")] - public static extern byte CNWSync_ManifestMetaData_field20_0x25_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field21_0x26_set___")] - public static extern void CNWSync_ManifestMetaData_field21_0x26_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field21_0x26_get___")] - public static extern byte CNWSync_ManifestMetaData_field21_0x26_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field22_0x27_set___")] - public static extern void CNWSync_ManifestMetaData_field22_0x27_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field22_0x27_get___")] - public static extern byte CNWSync_ManifestMetaData_field22_0x27_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field23_0x28_set___")] - public static extern void CNWSync_ManifestMetaData_field23_0x28_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field23_0x28_get___")] - public static extern byte CNWSync_ManifestMetaData_field23_0x28_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field24_0x29_set___")] - public static extern void CNWSync_ManifestMetaData_field24_0x29_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field24_0x29_get___")] - public static extern byte CNWSync_ManifestMetaData_field24_0x29_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field25_0x2a_set___")] - public static extern void CNWSync_ManifestMetaData_field25_0x2a_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field25_0x2a_get___")] - public static extern byte CNWSync_ManifestMetaData_field25_0x2a_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field26_0x2b_set___")] - public static extern void CNWSync_ManifestMetaData_field26_0x2b_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field26_0x2b_get___")] - public static extern byte CNWSync_ManifestMetaData_field26_0x2b_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field27_0x2c_set___")] - public static extern void CNWSync_ManifestMetaData_field27_0x2c_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field27_0x2c_get___")] - public static extern byte CNWSync_ManifestMetaData_field27_0x2c_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field28_0x2d_set___")] - public static extern void CNWSync_ManifestMetaData_field28_0x2d_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field28_0x2d_get___")] - public static extern byte CNWSync_ManifestMetaData_field28_0x2d_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field29_0x2e_set___")] - public static extern void CNWSync_ManifestMetaData_field29_0x2e_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field29_0x2e_get___")] - public static extern byte CNWSync_ManifestMetaData_field29_0x2e_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field30_0x2f_set___")] - public static extern void CNWSync_ManifestMetaData_field30_0x2f_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field30_0x2f_get___")] - public static extern byte CNWSync_ManifestMetaData_field30_0x2f_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field31_0x30_set___")] - public static extern void CNWSync_ManifestMetaData_field31_0x30_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field31_0x30_get___")] - public static extern byte CNWSync_ManifestMetaData_field31_0x30_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field32_0x31_set___")] - public static extern void CNWSync_ManifestMetaData_field32_0x31_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field32_0x31_get___")] - public static extern byte CNWSync_ManifestMetaData_field32_0x31_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field33_0x32_set___")] - public static extern void CNWSync_ManifestMetaData_field33_0x32_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field33_0x32_get___")] - public static extern byte CNWSync_ManifestMetaData_field33_0x32_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field34_0x33_set___")] - public static extern void CNWSync_ManifestMetaData_field34_0x33_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field34_0x33_get___")] - public static extern byte CNWSync_ManifestMetaData_field34_0x33_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field35_0x34_set___")] - public static extern void CNWSync_ManifestMetaData_field35_0x34_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field35_0x34_get___")] - public static extern byte CNWSync_ManifestMetaData_field35_0x34_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field36_0x35_set___")] - public static extern void CNWSync_ManifestMetaData_field36_0x35_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field36_0x35_get___")] - public static extern byte CNWSync_ManifestMetaData_field36_0x35_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field37_0x36_set___")] - public static extern void CNWSync_ManifestMetaData_field37_0x36_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field37_0x36_get___")] - public static extern byte CNWSync_ManifestMetaData_field37_0x36_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field38_0x37_set___")] - public static extern void CNWSync_ManifestMetaData_field38_0x37_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field38_0x37_get___")] - public static extern byte CNWSync_ManifestMetaData_field38_0x37_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field39_0x38_set___")] - public static extern void CNWSync_ManifestMetaData_field39_0x38_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_sha1_set___")] + public static extern void CNWSync_ManifestMetaData_m_sha1_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field39_0x38_get___")] - public static extern byte CNWSync_ManifestMetaData_field39_0x38_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_sha1_get___")] + public static extern global::System.IntPtr CNWSync_ManifestMetaData_m_sha1_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field40_0x39_set___")] - public static extern void CNWSync_ManifestMetaData_field40_0x39_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_hashTreeDepth_set___")] + public static extern void CNWSync_ManifestMetaData_m_hashTreeDepth_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field40_0x39_get___")] - public static extern byte CNWSync_ManifestMetaData_field40_0x39_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_hashTreeDepth_get___")] + public static extern uint CNWSync_ManifestMetaData_m_hashTreeDepth_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field41_0x3a_set___")] - public static extern void CNWSync_ManifestMetaData_field41_0x3a_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_moduleName_set___")] + public static extern void CNWSync_ManifestMetaData_m_moduleName_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field41_0x3a_get___")] - public static extern byte CNWSync_ManifestMetaData_field41_0x3a_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_moduleName_get___")] + public static extern global::System.IntPtr CNWSync_ManifestMetaData_m_moduleName_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field42_0x3b_set___")] - public static extern void CNWSync_ManifestMetaData_field42_0x3b_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_description_set___")] + public static extern void CNWSync_ManifestMetaData_m_description_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field42_0x3b_get___")] - public static extern byte CNWSync_ManifestMetaData_field42_0x3b_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_description_get___")] + public static extern global::System.IntPtr CNWSync_ManifestMetaData_m_description_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field43_0x3c_set___")] - public static extern void CNWSync_ManifestMetaData_field43_0x3c_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_uuid_set___")] + public static extern void CNWSync_ManifestMetaData_m_uuid_set(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field43_0x3c_get___")] - public static extern byte CNWSync_ManifestMetaData_field43_0x3c_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_uuid_get___")] + public static extern global::System.IntPtr CNWSync_ManifestMetaData_m_uuid_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field44_0x3d_set___")] - public static extern void CNWSync_ManifestMetaData_field44_0x3d_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_groupId_set___")] + public static extern void CNWSync_ManifestMetaData_m_groupId_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field44_0x3d_get___")] - public static extern byte CNWSync_ManifestMetaData_field44_0x3d_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_groupId_get___")] + public static extern uint CNWSync_ManifestMetaData_m_groupId_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field45_0x3e_set___")] - public static extern void CNWSync_ManifestMetaData_field45_0x3e_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_includesModuleContents_set___")] + public static extern void CNWSync_ManifestMetaData_m_includesModuleContents_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field45_0x3e_get___")] - public static extern byte CNWSync_ManifestMetaData_field45_0x3e_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_includesModuleContents_get___")] + public static extern bool CNWSync_ManifestMetaData_m_includesModuleContents_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field46_0x3f_set___")] - public static extern void CNWSync_ManifestMetaData_field46_0x3f_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_includesClientContents_set___")] + public static extern void CNWSync_ManifestMetaData_m_includesClientContents_set(global::System.Runtime.InteropServices.HandleRef jarg1, bool jarg2); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field46_0x3f_get___")] - public static extern byte CNWSync_ManifestMetaData_field46_0x3f_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_includesClientContents_get___")] + public static extern bool CNWSync_ManifestMetaData_m_includesClientContents_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field47_0x40_set___")] - public static extern void CNWSync_ManifestMetaData_field47_0x40_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_totalBytes_set___")] + public static extern void CNWSync_ManifestMetaData_m_totalBytes_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field47_0x40_get___")] - public static extern byte CNWSync_ManifestMetaData_field47_0x40_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_totalBytes_get___")] + public static extern uint CNWSync_ManifestMetaData_m_totalBytes_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field48_0x41_set___")] - public static extern void CNWSync_ManifestMetaData_field48_0x41_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_totalFiles_set___")] + public static extern void CNWSync_ManifestMetaData_m_totalFiles_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field48_0x41_get___")] - public static extern byte CNWSync_ManifestMetaData_field48_0x41_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_totalFiles_get___")] + public static extern uint CNWSync_ManifestMetaData_m_totalFiles_get(global::System.Runtime.InteropServices.HandleRef jarg1); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field49_0x42_set___")] - public static extern void CNWSync_ManifestMetaData_field49_0x42_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_createdAt_set___")] + public static extern void CNWSync_ManifestMetaData_m_createdAt_set(global::System.Runtime.InteropServices.HandleRef jarg1, uint jarg2); - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field49_0x42_get___")] - public static extern byte CNWSync_ManifestMetaData_field49_0x42_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field50_0x43_set___")] - public static extern void CNWSync_ManifestMetaData_field50_0x43_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field50_0x43_get___")] - public static extern byte CNWSync_ManifestMetaData_field50_0x43_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field51_0x44_set___")] - public static extern void CNWSync_ManifestMetaData_field51_0x44_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field51_0x44_get___")] - public static extern byte CNWSync_ManifestMetaData_field51_0x44_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field52_0x45_set___")] - public static extern void CNWSync_ManifestMetaData_field52_0x45_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field52_0x45_get___")] - public static extern byte CNWSync_ManifestMetaData_field52_0x45_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field53_0x46_set___")] - public static extern void CNWSync_ManifestMetaData_field53_0x46_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field53_0x46_get___")] - public static extern byte CNWSync_ManifestMetaData_field53_0x46_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field54_0x47_set___")] - public static extern void CNWSync_ManifestMetaData_field54_0x47_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field54_0x47_get___")] - public static extern byte CNWSync_ManifestMetaData_field54_0x47_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field55_0x48_set___")] - public static extern void CNWSync_ManifestMetaData_field55_0x48_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field55_0x48_get___")] - public static extern byte CNWSync_ManifestMetaData_field55_0x48_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field56_0x49_set___")] - public static extern void CNWSync_ManifestMetaData_field56_0x49_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field56_0x49_get___")] - public static extern byte CNWSync_ManifestMetaData_field56_0x49_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field57_0x4a_set___")] - public static extern void CNWSync_ManifestMetaData_field57_0x4a_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field57_0x4a_get___")] - public static extern byte CNWSync_ManifestMetaData_field57_0x4a_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field58_0x4b_set___")] - public static extern void CNWSync_ManifestMetaData_field58_0x4b_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field58_0x4b_get___")] - public static extern byte CNWSync_ManifestMetaData_field58_0x4b_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field59_0x4c_set___")] - public static extern void CNWSync_ManifestMetaData_field59_0x4c_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field59_0x4c_get___")] - public static extern byte CNWSync_ManifestMetaData_field59_0x4c_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field60_0x4d_set___")] - public static extern void CNWSync_ManifestMetaData_field60_0x4d_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field60_0x4d_get___")] - public static extern byte CNWSync_ManifestMetaData_field60_0x4d_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field61_0x4e_set___")] - public static extern void CNWSync_ManifestMetaData_field61_0x4e_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field61_0x4e_get___")] - public static extern byte CNWSync_ManifestMetaData_field61_0x4e_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field62_0x4f_set___")] - public static extern void CNWSync_ManifestMetaData_field62_0x4f_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field62_0x4f_get___")] - public static extern byte CNWSync_ManifestMetaData_field62_0x4f_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field63_0x50_set___")] - public static extern void CNWSync_ManifestMetaData_field63_0x50_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field63_0x50_get___")] - public static extern byte CNWSync_ManifestMetaData_field63_0x50_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field64_0x51_set___")] - public static extern void CNWSync_ManifestMetaData_field64_0x51_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field64_0x51_get___")] - public static extern byte CNWSync_ManifestMetaData_field64_0x51_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field65_0x52_set___")] - public static extern void CNWSync_ManifestMetaData_field65_0x52_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field65_0x52_get___")] - public static extern byte CNWSync_ManifestMetaData_field65_0x52_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field66_0x53_set___")] - public static extern void CNWSync_ManifestMetaData_field66_0x53_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field66_0x53_get___")] - public static extern byte CNWSync_ManifestMetaData_field66_0x53_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field67_0x54_set___")] - public static extern void CNWSync_ManifestMetaData_field67_0x54_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field67_0x54_get___")] - public static extern byte CNWSync_ManifestMetaData_field67_0x54_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field68_0x55_set___")] - public static extern void CNWSync_ManifestMetaData_field68_0x55_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field68_0x55_get___")] - public static extern byte CNWSync_ManifestMetaData_field68_0x55_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field69_0x56_set___")] - public static extern void CNWSync_ManifestMetaData_field69_0x56_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field69_0x56_get___")] - public static extern byte CNWSync_ManifestMetaData_field69_0x56_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field70_0x57_set___")] - public static extern void CNWSync_ManifestMetaData_field70_0x57_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field70_0x57_get___")] - public static extern byte CNWSync_ManifestMetaData_field70_0x57_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field71_0x58_set___")] - public static extern void CNWSync_ManifestMetaData_field71_0x58_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field71_0x58_get___")] - public static extern byte CNWSync_ManifestMetaData_field71_0x58_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field72_0x59_set___")] - public static extern void CNWSync_ManifestMetaData_field72_0x59_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field72_0x59_get___")] - public static extern byte CNWSync_ManifestMetaData_field72_0x59_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field73_0x5a_set___")] - public static extern void CNWSync_ManifestMetaData_field73_0x5a_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field73_0x5a_get___")] - public static extern byte CNWSync_ManifestMetaData_field73_0x5a_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field74_0x5b_set___")] - public static extern void CNWSync_ManifestMetaData_field74_0x5b_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field74_0x5b_get___")] - public static extern byte CNWSync_ManifestMetaData_field74_0x5b_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field75_0x5c_set___")] - public static extern void CNWSync_ManifestMetaData_field75_0x5c_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field75_0x5c_get___")] - public static extern byte CNWSync_ManifestMetaData_field75_0x5c_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field76_0x5d_set___")] - public static extern void CNWSync_ManifestMetaData_field76_0x5d_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field76_0x5d_get___")] - public static extern byte CNWSync_ManifestMetaData_field76_0x5d_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field77_0x5e_set___")] - public static extern void CNWSync_ManifestMetaData_field77_0x5e_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field77_0x5e_get___")] - public static extern byte CNWSync_ManifestMetaData_field77_0x5e_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field78_0x5f_set___")] - public static extern void CNWSync_ManifestMetaData_field78_0x5f_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field78_0x5f_get___")] - public static extern byte CNWSync_ManifestMetaData_field78_0x5f_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field79_0x60_set___")] - public static extern void CNWSync_ManifestMetaData_field79_0x60_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field79_0x60_get___")] - public static extern byte CNWSync_ManifestMetaData_field79_0x60_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field80_0x61_set___")] - public static extern void CNWSync_ManifestMetaData_field80_0x61_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field80_0x61_get___")] - public static extern byte CNWSync_ManifestMetaData_field80_0x61_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field81_0x62_set___")] - public static extern void CNWSync_ManifestMetaData_field81_0x62_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field81_0x62_get___")] - public static extern byte CNWSync_ManifestMetaData_field81_0x62_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field82_0x63_set___")] - public static extern void CNWSync_ManifestMetaData_field82_0x63_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field82_0x63_get___")] - public static extern byte CNWSync_ManifestMetaData_field82_0x63_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field83_0x64_set___")] - public static extern void CNWSync_ManifestMetaData_field83_0x64_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field83_0x64_get___")] - public static extern byte CNWSync_ManifestMetaData_field83_0x64_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field84_0x65_set___")] - public static extern void CNWSync_ManifestMetaData_field84_0x65_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field84_0x65_get___")] - public static extern byte CNWSync_ManifestMetaData_field84_0x65_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field85_0x66_set___")] - public static extern void CNWSync_ManifestMetaData_field85_0x66_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field85_0x66_get___")] - public static extern byte CNWSync_ManifestMetaData_field85_0x66_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field86_0x67_set___")] - public static extern void CNWSync_ManifestMetaData_field86_0x67_set(global::System.Runtime.InteropServices.HandleRef jarg1, byte jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field86_0x67_get___")] - public static extern byte CNWSync_ManifestMetaData_field86_0x67_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field87_0x68_set___")] - public static extern void CNWSync_ManifestMetaData_field87_0x68_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field87_0x68_get___")] - public static extern long CNWSync_ManifestMetaData_field87_0x68_get(global::System.Runtime.InteropServices.HandleRef jarg1); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field88_0x70_set___")] - public static extern void CNWSync_ManifestMetaData_field88_0x70_set(global::System.Runtime.InteropServices.HandleRef jarg1, long jarg2); - - [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_field88_0x70_get___")] - public static extern long CNWSync_ManifestMetaData_field88_0x70_get(global::System.Runtime.InteropServices.HandleRef jarg1); + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_CNWSync_ManifestMetaData_m_createdAt_get___")] + public static extern uint CNWSync_ManifestMetaData_m_createdAt_get(global::System.Runtime.InteropServices.HandleRef jarg1); [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_new_CNWSync_ManifestMetaData___")] public static extern global::System.IntPtr new_CNWSync_ManifestMetaData(); @@ -43191,7 +42732,13 @@ static NWNXLibPINVOKE() { public static extern global::System.IntPtr new_SHA1__SWIG_1(); [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_new_SHA1__SWIG_2___")] - public static extern global::System.IntPtr new_SHA1__SWIG_2(byte* jarg1); + public static extern global::System.IntPtr new_SHA1__SWIG_2(global::System.IntPtr jarg1); + + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_new_SHA1__SWIG_3___")] + public static extern global::System.IntPtr new_SHA1__SWIG_3(global::System.Runtime.InteropServices.HandleRef jarg1); + + [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_SHA1__OpAssign___")] + public static extern global::System.IntPtr SHA1__OpAssign(global::System.Runtime.InteropServices.HandleRef jarg1, global::System.Runtime.InteropServices.HandleRef jarg2); [global::System.Runtime.InteropServices.DllImport("NWNX_SWIG_DotNET", EntryPoint="CSharp_NWNfNativefAPI_SHA1_Clear___")] public static extern void SHA1_Clear(global::System.Runtime.InteropServices.HandleRef jarg1); diff --git a/src/main/API/SHA1.cs b/src/main/API/SHA1.cs index f70d0e1..525eabf 100644 --- a/src/main/API/SHA1.cs +++ b/src/main/API/SHA1.cs @@ -126,14 +126,24 @@ public NativeArray m_hex { } - public SHA1(CExoString param_1) : this(NWNXLibPINVOKE.new_SHA1__SWIG_0(CExoString.getCPtr(param_1)), true) { + public SHA1(SHA1 other) : this(NWNXLibPINVOKE.new_SHA1__SWIG_0(SHA1.getCPtr(other)), true) { if (NWNXLibPINVOKE.SWIGPendingException.Pending) throw NWNXLibPINVOKE.SWIGPendingException.Retrieve(); } public SHA1() : this(NWNXLibPINVOKE.new_SHA1__SWIG_1(), true) { } - public SHA1(byte* param_1) : this(NWNXLibPINVOKE.new_SHA1__SWIG_2(param_1), true) { + public SHA1(NativeArray ptr) : this(NWNXLibPINVOKE.new_SHA1__SWIG_2(ptr), true) { + } + + public SHA1(CExoString hex) : this(NWNXLibPINVOKE.new_SHA1__SWIG_3(CExoString.getCPtr(hex)), true) { + if (NWNXLibPINVOKE.SWIGPendingException.Pending) throw NWNXLibPINVOKE.SWIGPendingException.Retrieve(); + } + + public SHA1 _OpAssign(SHA1 other) { + SHA1 ret = new SHA1(NWNXLibPINVOKE.SHA1__OpAssign(swigCPtr, SHA1.getCPtr(other)), true); + if (NWNXLibPINVOKE.SWIGPendingException.Pending) throw NWNXLibPINVOKE.SWIGPendingException.Retrieve(); + return ret; } public void Clear() {