6 Oct
2025
6 Oct
'25
10:33 a.m.
Hans Leidekker (@hans) commented about dlls/rometadata/tests/rometadata.c:
+ +#define TYPE_VISIBILITY_PUBLIC 0x00000001 + +#define TYPE_SEMANTICS_CLASS 0x00000000 +#define TYPE_SEMANTICS_INTERFACE 0x00000020 + +#define TYPE_ABSTRACT 0x00000080 +#define TYPE_SEALED 0x00000100 +#define TYPE_IMPORTED 0x00001000 +#define TYPE_WINRT 0x00004000 + +enum class_semantics +{ + CLASS_SEMANTICS_CLASS = 0, + CLASS_SEMANTICS_INTERFACE = 0x00000020, +}; This appears to duplicate the defines above and it's unused.
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/9094#note_117649