4 Mar
2025
4 Mar
'25
6:54 a.m.
From: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- include/gdipluscolor.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/gdipluscolor.h b/include/gdipluscolor.h index 39b7cb6debd..46acc51deed 100644 --- a/include/gdipluscolor.h +++ b/include/gdipluscolor.h @@ -35,6 +35,11 @@ class Color { protected: ARGB Argb; + +public: + ARGB GetValue() const { return Argb; } + + void SetValue(ARGB argb) { Argb = argb; } }; #else /* end of c++ typedefs */ -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7481