diff options
| author | Vincent Billet <vingtsang.billet@gmail.com> | 2025-05-26 08:16:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-26 08:16:45 +0200 |
| commit | bb274ab512c6f379930643853c90f3ae7fa03f7e (patch) | |
| tree | 3737c8dbbdf8e116553cbafcfe70942985328b18 /core/sys/windows | |
| parent | 1ed05c2498325c97fd6d2856a6a190ab7e5820fc (diff) | |
| parent | 655fab7227fbd92837c82fdbeea65c9121b0f70b (diff) | |
Merge branch 'odin-lang:master' into badaxis/Windows-Audio&Winmm
Diffstat (limited to 'core/sys/windows')
| -rw-r--r-- | core/sys/windows/kernel32.odin | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/sys/windows/kernel32.odin b/core/sys/windows/kernel32.odin index 266dcdbf4..ed32c7a9f 100644 --- a/core/sys/windows/kernel32.odin +++ b/core/sys/windows/kernel32.odin @@ -857,7 +857,6 @@ MEMORY_RESOURCE_NOTIFICATION_TYPE :: enum c_int { LowMemoryResourceNotification :: MEMORY_RESOURCE_NOTIFICATION_TYPE.LowMemoryResourceNotification HighMemoryResourceNotification :: MEMORY_RESOURCE_NOTIFICATION_TYPE.HighMemoryResourceNotification - @(default_calling_convention="system") foreign kernel32 { CreateMemoryResourceNotification :: proc( @@ -1194,7 +1193,7 @@ DUMMYUNIONNAME_u :: struct #raw_union { SYSTEM_LOGICAL_PROCESSOR_INFORMATION :: struct { ProcessorMask: ULONG_PTR, Relationship: LOGICAL_PROCESSOR_RELATIONSHIP, - DummyUnion: DUMMYUNIONNAME_u, + using DummyUnion: DUMMYUNIONNAME_u, } SYSTEM_POWER_STATUS :: struct { |