microsoft / win32metadata

Tooling to generate metadata for Win32 APIs in the Windows SDK.
Other
1.34k stars 118 forks source link

DXC: Annotate new struct fields and enums #1989

Open MarijnS95 opened 2 months ago

MarijnS95 commented 2 months ago

For https://github.com/microsoft/win32metadata/pull/474#issuecomment-2322000133.

For DXC_FOURCC it would have been awesome if we could have something like the following, if const methods were supported:

public static const uint DXC_FOURCC(char ch0, char ch1, char ch2, char ch3) => ch0 | (ch1 << 8) | (ch2 << 16) | (ch3 << 24);