This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using System.Runtime.InteropServices;
using System.Text;
using Cpp2IlInjected;
namespace CSCore.Win32
{
// Token: 0x02000014 RID: 20
[Token(Token = "0x2000014")]
internal class NativeMethods
{
// Token: 0x0600005C RID: 92
[Token(Token = "0x600005C")]
[Address(RVA = "0x69B060", Offset = "0x699E60", VA = "0x18069B060")]
internal static extern int FormatMessage(int dwFlags, IntPtr lpSource, int dwMessageId, int dwLanguageId, [Out] StringBuilder lpBuffer, int nSize, IntPtr va_list_arguments);
// Token: 0x0600005D RID: 93
[Token(Token = "0x600005D")]
[Address(RVA = "0x69B1F0", Offset = "0x699FF0", VA = "0x18069B1F0")]
public static extern int PropVariantClear(ref PropertyVariant propertyVariant);
}
}