5 Apr
2025
5 Apr
'25
6:33 p.m.
From: Daniel Lehman <dlehman25(a)gmail.com> --- include/msvcrt/complex.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/msvcrt/complex.h b/include/msvcrt/complex.h index 2d7009c470c..53a72b6a000 100644 --- a/include/msvcrt/complex.h +++ b/include/msvcrt/complex.h @@ -24,4 +24,10 @@ typedef struct _C_float_complex typedef _C_double_complex _Dcomplex; typedef _C_float_complex _Fcomplex; +double __cdecl cimag(_Dcomplex); +double __cdecl creal(_Dcomplex); + +float __cdecl cimagf(_Fcomplex); +float __cdecl crealf(_Fcomplex); + #endif /* _COMPLEX_H_DEFINED */ -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7748