We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Metadata defines as follows:
// Windows.Win32.Graphics.GdiPlus.Color using Windows.Win32.Foundation.Metadata; [Documentation("https://learn.microsoft.com/windows/win32/WMP/color-element")] public struct Color { public uint Argb; public const int AliceBlue = -984833; /// ...
CsWin32 is generating:
namespace Windows.Win32 { namespace Graphics.GdiPlus { [global::System.CodeDom.Compiler.GeneratedCode("Microsoft.Windows.CsWin32", "0.3.75-beta+6d384e22ca")] internal partial struct Color { internal uint Argb; internal int AliceBlue; // ...
The text was updated successfully, but these errors were encountered:
uint
int
Define constant members of structs as constants
e0acc19
Before this change, they were emitted as instance fields. Fixes #1121
AArnott
Successfully merging a pull request may close this issue.
Metadata defines as follows:
CsWin32 is generating:
The text was updated successfully, but these errors were encountered: