Skip to content

Commit 9d2c8ae

Browse files
Regenerate bindings as of 31/10/2024 (#2322)
* Regenerated bindings as of 31/10/2024 (16:30:31) * Regenerated bindings as of 31/10/2024 (22:01:14) * Regenerated bindings as of 31/10/2024 (22:13:00) * Regenerated bindings as of 31/10/2024 (23:02:17) --------- Co-authored-by: The Silk.NET Automaton <9011267+dotnet-bot@users.noreply.github.com>
1 parent 10a4edc commit 9d2c8ae

File tree

780 files changed

+325212
-8620
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

780 files changed

+325212
-8620
lines changed

build/cache/assimp.json.gz

0 Bytes
Binary file not shown.

build/cache/cl.json.gz

97.1 KB
Binary file not shown.

build/cache/core.json.gz

0 Bytes
Binary file not shown.

build/cache/d2d.json.gz

0 Bytes
Binary file not shown.

build/cache/d3d11.json.gz

0 Bytes
Binary file not shown.

build/cache/d3d12.json.gz

41.5 KB
Binary file not shown.

build/cache/d3d9.json.gz

0 Bytes
Binary file not shown.

build/cache/d3dcompiler.json.gz

1.32 KB
Binary file not shown.

build/cache/dcomp.json.gz

2.15 KB
Binary file not shown.

build/cache/dstorage.json.gz

25 Bytes
Binary file not shown.

build/cache/dwrite.json.gz

0 Bytes
Binary file not shown.

build/cache/dxc.json.gz

926 Bytes
Binary file not shown.

build/cache/dxgi.json.gz

403 Bytes
Binary file not shown.

build/cache/dxva.json.gz

0 Bytes
Binary file not shown.

build/cache/gl.json.gz

0 Bytes
Binary file not shown.

build/cache/glcore.json.gz

0 Bytes
Binary file not shown.

build/cache/gles2.json.gz

0 Bytes
Binary file not shown.

build/cache/openxr.json.gz

16.2 KB
Binary file not shown.

build/cache/sdl.json.gz

0 Bytes
Binary file not shown.

build/cache/shaderc.json.gz

194 Bytes
Binary file not shown.

build/cache/spirv-cross.json.gz

54 Bytes
Binary file not shown.

build/cache/spirv-reflect.json.gz

0 Bytes
Binary file not shown.

build/cache/spirv.json.gz

0 Bytes
Binary file not shown.

build/cache/vulkan.json.gz

0 Bytes
Binary file not shown.

build/cache/webgpu.json.gz

172 Bytes
Binary file not shown.

build/cache/wgl.json.gz

0 Bytes
Binary file not shown.

build/cache/wic.json.gz

0 Bytes
Binary file not shown.

build/cache/win32extras.json.gz

0 Bytes
Binary file not shown.

build/cache/xaudio.json.gz

18 Bytes
Binary file not shown.

build/cache/xinput.json.gz

55 Bytes
Binary file not shown.

build/submodules/ANGLE

Submodule ANGLE updated from ed97adb to 0d914d4

build/submodules/GLFW

Submodule GLFW updated 75 files

build/submodules/MoltenVK

Submodule MoltenVK updated 68 files

build/submodules/SPIRV-Tools

Submodule SPIRV-Tools updated 189 files

src/Assimp/Silk.NET.Assimp/Enums/TextureFlags.gen.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@
99

1010
namespace Silk.NET.Assimp
1111
{
12+
[Flags]
1213
[NativeName("Name", "aiTextureFlags")]
1314
public enum TextureFlags : int
1415
{
16+
[NativeName("Name", "")]
17+
None = 0,
1518
[Obsolete("Deprecated in favour of \"Invert\"")]
1619
[NativeName("Name", "aiTextureFlags_Invert")]
1720
TextureFlagsInvert = 0x1,

src/Core/Silk.NET.Core.Win32Extras/Enums/EXTCONN.gen.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@
99

1010
namespace Silk.NET.Core.Win32Extras
1111
{
12+
[Flags]
1213
[NativeName("Name", "tagEXTCONN")]
1314
public enum EXTCONN : int
1415
{
16+
[NativeName("Name", "")]
17+
None = 0,
1518
[Obsolete("Deprecated in favour of \"Strong\"")]
1619
[NativeName("Name", "EXTCONN_STRONG")]
1720
ExtconnStrong = 0x1,

src/Core/Silk.NET.Core.Win32Extras/Enums/EtwCompressionResumptionMode.gen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace Silk.NET.Core.Win32Extras
1111
{
12-
[NativeName("AnonymousName", "__AnonymousEnum_evntrace_L863_C9")]
12+
[NativeName("AnonymousName", "__AnonymousEnum_evntrace_L887_C9")]
1313
[NativeName("Name", "ETW_COMPRESSION_RESUMPTION_MODE")]
1414
public enum EtwCompressionResumptionMode : int
1515
{
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
4+
5+
using System;
6+
using Silk.NET.Core.Attributes;
7+
8+
#pragma warning disable 1591
9+
10+
namespace Silk.NET.Core.Win32Extras
11+
{
12+
[NativeName("Name", "ETW_CONTEXT_REGISTER_TYPES")]
13+
public enum EtwContextRegisterTypes : int
14+
{
15+
[Obsolete("Deprecated in favour of \"None\"")]
16+
[NativeName("Name", "EtwContextRegisterTypeNone")]
17+
EtwContextRegisterTypeNone = 0x0,
18+
[Obsolete("Deprecated in favour of \"Control\"")]
19+
[NativeName("Name", "EtwContextRegisterTypeControl")]
20+
EtwContextRegisterTypeControl = 0x1,
21+
[Obsolete("Deprecated in favour of \"Integer\"")]
22+
[NativeName("Name", "EtwContextRegisterTypeInteger")]
23+
EtwContextRegisterTypeInteger = 0x2,
24+
[NativeName("Name", "EtwContextRegisterTypeNone")]
25+
None = 0x0,
26+
[NativeName("Name", "EtwContextRegisterTypeControl")]
27+
Control = 0x1,
28+
[NativeName("Name", "EtwContextRegisterTypeInteger")]
29+
Integer = 0x2,
30+
}
31+
}
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
4+
5+
using System;
6+
using Silk.NET.Core.Attributes;
7+
8+
#pragma warning disable 1591
9+
10+
namespace Silk.NET.Core.Win32Extras
11+
{
12+
[NativeName("Name", "_FILE_INFO_BY_NAME_CLASS")]
13+
public enum FileInfoByNameClass : int
14+
{
15+
[NativeName("Name", "FileStatByNameInfo")]
16+
FileStatByNameInfo = 0x0,
17+
[NativeName("Name", "FileStatLxByNameInfo")]
18+
FileStatLxByNameInfo = 0x1,
19+
[NativeName("Name", "FileCaseSensitiveByNameInfo")]
20+
FileCaseSensitiveByNameInfo = 0x2,
21+
[NativeName("Name", "FileStatBasicByNameInfo")]
22+
FileStatBasicByNameInfo = 0x3,
23+
[NativeName("Name", "MaximumFileInfoByNameClass")]
24+
MaximumFileInfoByNameClass = 0x4,
25+
}
26+
}

src/Core/Silk.NET.Core.Win32Extras/Enums/GlobalOptEHValues.gen.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
namespace Silk.NET.Core.Win32Extras
1111
{
12+
[Flags]
1213
[NativeName("Name", "tagGLOBALOPT_EH_VALUES")]
1314
public enum GlobalOptEHValues : int
1415
{

src/Core/Silk.NET.Core.Win32Extras/Enums/LockType.gen.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@
99

1010
namespace Silk.NET.Core.Win32Extras
1111
{
12+
[Flags]
1213
[NativeName("Name", "tagLOCKTYPE")]
1314
public enum LockType : int
1415
{
16+
[NativeName("Name", "")]
17+
None = 0,
1518
[Obsolete("Deprecated in favour of \"Write\"")]
1619
[NativeName("Name", "LOCK_WRITE")]
1720
LockWrite = 0x1,

src/Core/Silk.NET.Core.Win32Extras/Enums/OLEDCFlags.gen.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@
99

1010
namespace Silk.NET.Core.Win32Extras
1111
{
12+
[Flags]
1213
[NativeName("Name", "tagOLEDCFLAGS")]
1314
public enum OLEDCFlags : int
1415
{
16+
[NativeName("Name", "")]
17+
None = 0,
1518
[Obsolete("Deprecated in favour of \"Nodraw\"")]
1619
[NativeName("Name", "OLEDC_NODRAW")]
1720
OledcNodraw = 0x1,

src/Core/Silk.NET.Core.Win32Extras/Enums/PointerInactive.gen.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@
99

1010
namespace Silk.NET.Core.Win32Extras
1111
{
12+
[Flags]
1213
[NativeName("Name", "tagPOINTERINACTIVE")]
1314
public enum PointerInactive : int
1415
{
16+
[NativeName("Name", "")]
17+
None = 0,
1518
[Obsolete("Deprecated in favour of \"Activateonentry\"")]
1619
[NativeName("Name", "POINTERINACTIVE_ACTIVATEONENTRY")]
1720
PointerinactiveActivateonentry = 0x1,

src/Core/Silk.NET.Core.Win32Extras/Enums/PropPageStatus.gen.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,12 @@
99

1010
namespace Silk.NET.Core.Win32Extras
1111
{
12+
[Flags]
1213
[NativeName("Name", "tagPROPPAGESTATUS")]
1314
public enum PropPageStatus : int
1415
{
16+
[NativeName("Name", "")]
17+
None = 0,
1518
[Obsolete("Deprecated in favour of \"Dirty\"")]
1619
[NativeName("Name", "PROPPAGESTATUS_DIRTY")]
1720
ProppagestatusDirty = 0x1,

src/Core/Silk.NET.Core.Win32Extras/Enums/STGC.gen.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
namespace Silk.NET.Core.Win32Extras
1111
{
12+
[Flags]
1213
[NativeName("Name", "tagSTGC")]
1314
public enum STGC : int
1415
{

src/Core/Silk.NET.Core.Win32Extras/Enums/TraceQueryInfoClass.gen.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,9 @@ public enum TraceQueryInfoClass : int
6868
TraceUnifiedStackCachingInfo = 0x1A,
6969
[NativeName("Name", "TracePmcSessionInformation")]
7070
TracePmcSessionInformation = 0x1B,
71+
[NativeName("Name", "TraceContextRegisterInfo")]
72+
TraceContextRegisterInfo = 0x1C,
7173
[NativeName("Name", "MaxTraceSetInfoClass")]
72-
MaxTraceSetInfoClass = 0x1C,
74+
MaxTraceSetInfoClass = 0x1D,
7375
}
7476
}

src/Core/Silk.NET.Core.Win32Extras/Structs/DebugEvent.gen.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ public DebugEvent
6464
[NativeName("Name", "dwThreadId")]
6565
public uint DwThreadId;
6666

67-
[NativeName("Type", "union (unnamed union at C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um\\minwinbase.h:370:5)")]
68-
[NativeName("Type.Name", "union (unnamed union at C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\um\\minwinbase.h:370:5)")]
67+
[NativeName("Type", "union (unnamed union at C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.26100.0\\um\\minwinbase.h:373:5)")]
68+
[NativeName("Type.Name", "union (unnamed union at C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.26100.0\\um\\minwinbase.h:373:5)")]
6969
[NativeName("Name", "u")]
7070
public DebugEventU U;
7171
}

src/Core/Silk.NET.Core.Win32Extras/Structs/DebugEventU.gen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace Silk.NET.Core.Win32Extras
1818
{
1919
[StructLayout(LayoutKind.Explicit)]
20-
[NativeName("Name", "__AnonymousRecord_minwinbase_L370_C5")]
20+
[NativeName("Name", "__AnonymousRecord_minwinbase_L373_C5")]
2121
public unsafe partial struct DebugEventU
2222
{
2323
public DebugEventU

src/Core/Silk.NET.Core.Win32Extras/Structs/ETWPMCSESSIONINFO.gen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace Silk.NET.Core.Win32Extras
1818
{
19-
[NativeName("AnonymousName", "__AnonymousRecord_evntrace_L1393_C9")]
19+
[NativeName("AnonymousName", "__AnonymousRecord_evntrace_L1427_C9")]
2020
[NativeName("Name", "ETW_PMC_SESSION_INFO")]
2121
public unsafe partial struct ETWPMCSESSIONINFO
2222
{

src/Core/Silk.NET.Core.Win32Extras/Structs/EtwBufferCallbackInformation.gen.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ public EtwBufferCallbackInformation
4343
}
4444

4545

46-
[NativeName("Type", "TRACEHANDLE")]
47-
[NativeName("Type.Name", "TRACEHANDLE")]
46+
[NativeName("Type", "PROCESSTRACE_HANDLE")]
47+
[NativeName("Type.Name", "PROCESSTRACE_HANDLE")]
4848
[NativeName("Name", "TraceHandle")]
4949
public ulong TraceHandle;
5050

src/Core/Silk.NET.Core.Win32Extras/Structs/EtwBufferContext.gen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public EtwBufferContext
5656

5757

5858
[NativeName("Type", "")]
59-
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L1307_C5")]
59+
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L1341_C5")]
6060
[NativeName("Name", "anonymous1")]
6161
public EtwBufferContextUnion Anonymous;
6262

src/Core/Silk.NET.Core.Win32Extras/Structs/EtwBufferContextUnion.gen.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace Silk.NET.Core.Win32Extras
1818
{
1919
[StructLayout(LayoutKind.Explicit)]
20-
[NativeName("Name", "__AnonymousRecord_evntrace_L1307_C5")]
20+
[NativeName("Name", "__AnonymousRecord_evntrace_L1341_C5")]
2121
public unsafe partial struct EtwBufferContextUnion
2222
{
2323
public EtwBufferContextUnion
@@ -52,7 +52,7 @@ public EtwBufferContextUnion
5252

5353
[FieldOffset(0)]
5454
[NativeName("Type", "")]
55-
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L1308_C9")]
55+
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L1342_C9")]
5656
[NativeName("Name", "anonymous1")]
5757
public EtwBufferContextUnionUnion Anonymous;
5858

src/Core/Silk.NET.Core.Win32Extras/Structs/EtwBufferContextUnionUnion.gen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace Silk.NET.Core.Win32Extras
1818
{
19-
[NativeName("Name", "__AnonymousRecord_evntrace_L1308_C9")]
19+
[NativeName("Name", "__AnonymousRecord_evntrace_L1342_C9")]
2020
public unsafe partial struct EtwBufferContextUnionUnion
2121
{
2222
public EtwBufferContextUnionUnion

src/Core/Silk.NET.Core.Win32Extras/Structs/EventDataDescriptor.gen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public EventDataDescriptor
7878
public uint Size;
7979

8080
[NativeName("Type", "")]
81-
[NativeName("Type.Name", "__AnonymousRecord_evntprov_L182_C5")]
81+
[NativeName("Type.Name", "__AnonymousRecord_evntprov_L183_C5")]
8282
[NativeName("Name", "anonymous1")]
8383
public EventDataDescriptorUnion Anonymous;
8484
#if NETSTANDARD2_1 || NETCOREAPP3_1 || NET5_0 || NET5_0_OR_GREATER

src/Core/Silk.NET.Core.Win32Extras/Structs/EventDataDescriptorUnion.gen.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace Silk.NET.Core.Win32Extras
1818
{
1919
[StructLayout(LayoutKind.Explicit)]
20-
[NativeName("Name", "__AnonymousRecord_evntprov_L182_C5")]
20+
[NativeName("Name", "__AnonymousRecord_evntprov_L183_C5")]
2121
public unsafe partial struct EventDataDescriptorUnion
2222
{
2323
public EventDataDescriptorUnion
@@ -64,7 +64,7 @@ public EventDataDescriptorUnion
6464

6565
[FieldOffset(0)]
6666
[NativeName("Type", "")]
67-
[NativeName("Type.Name", "__AnonymousRecord_evntprov_L184_C9")]
67+
[NativeName("Type.Name", "__AnonymousRecord_evntprov_L185_C9")]
6868
[NativeName("Name", "anonymous1")]
6969
public EventDataDescriptorUnionUnion Anonymous;
7070
#if NETSTANDARD2_1 || NETCOREAPP3_1 || NET5_0 || NET5_0_OR_GREATER

src/Core/Silk.NET.Core.Win32Extras/Structs/EventDataDescriptorUnionUnion.gen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace Silk.NET.Core.Win32Extras
1818
{
19-
[NativeName("Name", "__AnonymousRecord_evntprov_L184_C9")]
19+
[NativeName("Name", "__AnonymousRecord_evntprov_L185_C9")]
2020
public unsafe partial struct EventDataDescriptorUnionUnion
2121
{
2222
public EventDataDescriptorUnionUnion

src/Core/Silk.NET.Core.Win32Extras/Structs/EventInstanceHeader.gen.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -163,12 +163,12 @@ public EventInstanceHeader
163163
public ushort Size;
164164

165165
[NativeName("Type", "")]
166-
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L920_C5")]
166+
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L954_C5")]
167167
[NativeName("Name", "anonymous1")]
168168
public EventInstanceHeaderUnion1 Anonymous1;
169169

170170
[NativeName("Type", "")]
171-
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L927_C5")]
171+
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L961_C5")]
172172
[NativeName("Name", "anonymous2")]
173173
public EventInstanceHeaderUnion2 Anonymous2;
174174

@@ -203,7 +203,7 @@ public EventInstanceHeader
203203
public uint ParentInstanceId;
204204

205205
[NativeName("Type", "")]
206-
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L941_C5")]
206+
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L975_C5")]
207207
[NativeName("Name", "anonymous3")]
208208
public EventInstanceHeaderUnion3 Anonymous3;
209209

src/Core/Silk.NET.Core.Win32Extras/Structs/EventInstanceHeaderUnion1.gen.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace Silk.NET.Core.Win32Extras
1818
{
1919
[StructLayout(LayoutKind.Explicit)]
20-
[NativeName("Name", "__AnonymousRecord_evntrace_L920_C5")]
20+
[NativeName("Name", "__AnonymousRecord_evntrace_L954_C5")]
2121
public unsafe partial struct EventInstanceHeaderUnion1
2222
{
2323
public EventInstanceHeaderUnion1
@@ -58,7 +58,7 @@ public EventInstanceHeaderUnion1
5858

5959
[FieldOffset(0)]
6060
[NativeName("Type", "")]
61-
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L922_C9")]
61+
[NativeName("Type.Name", "__AnonymousRecord_evntrace_L956_C9")]
6262
[NativeName("Name", "anonymous1")]
6363
public EventInstanceHeaderUnion1Union Anonymous;
6464
#if NETSTANDARD2_1 || NETCOREAPP3_1 || NET5_0 || NET5_0_OR_GREATER

src/Core/Silk.NET.Core.Win32Extras/Structs/EventInstanceHeaderUnion1Union.gen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace Silk.NET.Core.Win32Extras
1818
{
19-
[NativeName("Name", "__AnonymousRecord_evntrace_L922_C9")]
19+
[NativeName("Name", "__AnonymousRecord_evntrace_L956_C9")]
2020
public unsafe partial struct EventInstanceHeaderUnion1Union
2121
{
2222
public EventInstanceHeaderUnion1Union

src/Core/Silk.NET.Core.Win32Extras/Structs/EventInstanceHeaderUnion2.gen.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace Silk.NET.Core.Win32Extras
1818
{
1919
[StructLayout(LayoutKind.Explicit)]
20-
[NativeName("Name", "__AnonymousRecord_evntrace_L927_C5")]
20+
[NativeName("Name", "__AnonymousRecord_evntrace_L961_C5")]
2121
public unsafe partial struct EventInstanceHeaderUnion2
2222
{
2323
public EventInstanceHeaderUnion2
@@ -45,8 +45,8 @@ public EventInstanceHeaderUnion2
4545
public uint Version;
4646

4747
[FieldOffset(0)]
48-
[NativeName("Type", "struct (unnamed struct at C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared\\evntrace.h:929:9)")]
49-
[NativeName("Type.Name", "struct (unnamed struct at C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.22621.0\\shared\\evntrace.h:929:9)")]
48+
[NativeName("Type", "struct (unnamed struct at C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.26100.0\\shared\\evntrace.h:963:9)")]
49+
[NativeName("Type.Name", "struct (unnamed struct at C:\\Program Files (x86)\\Windows Kits\\10\\Include\\10.0.26100.0\\shared\\evntrace.h:963:9)")]
5050
[NativeName("Name", "Class")]
5151
public EventInstanceHeaderUnion2Class Class;
5252
}

src/Core/Silk.NET.Core.Win32Extras/Structs/EventInstanceHeaderUnion2Class.gen.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
namespace Silk.NET.Core.Win32Extras
1818
{
19-
[NativeName("Name", "__AnonymousRecord_evntrace_L929_C9")]
19+
[NativeName("Name", "__AnonymousRecord_evntrace_L963_C9")]
2020
public unsafe partial struct EventInstanceHeaderUnion2Class
2121
{
2222
public EventInstanceHeaderUnion2Class

0 commit comments

Comments
 (0)