30 Aug
2024
30 Aug
'24
7:32 a.m.
From: Alistair Leslie-Hughes <leslie_alistair(a)hotmail.com> --- include/gdiplustypes.h | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/include/gdiplustypes.h b/include/gdiplustypes.h index 7f72b9fa23f..a9905327ecd 100644 --- a/include/gdiplustypes.h +++ b/include/gdiplustypes.h @@ -224,6 +224,24 @@ public: } }; +/* FIXME: missing the methods. */ +class SizeF +{ +public: + REAL Width; + REAL Height; + + SizeF() + : Width(0.0f), Height(0.0f) + { + } + + SizeF(REAL width, REAL height) + : Width(width), Height(height) + { + } +}; + class CharacterRange { public: -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/6407