Module: wine Branch: master Commit: dea96222b42080f0c081454089422100335db10d URL: https://gitlab.winehq.org/wine/wine/-/commit/dea96222b42080f0c08145408942210...
Author: Rémi Bernon rbernon@codeweavers.com Date: Tue Jun 4 20:42:48 2024 +0200
include: Add a couple of CRT function declarations.
---
include/msvcrt/math.h | 3 +++ include/msvcrt/stdlib.h | 2 ++ 2 files changed, 5 insertions(+)
diff --git a/include/msvcrt/math.h b/include/msvcrt/math.h index fc7de676c83..8238c5803b4 100644 --- a/include/msvcrt/math.h +++ b/include/msvcrt/math.h @@ -111,6 +111,9 @@ _ACRTIMP float __cdecl truncf(float); _ACRTIMP int __cdecl ilogb(double); _ACRTIMP int __cdecl ilogbf(float);
+_ACRTIMP float __cdecl fmaf(float x, float y, float z); +_ACRTIMP double __cdecl fma(double x, double y, double z); + _ACRTIMP __int64 __cdecl llrint(double); _ACRTIMP __int64 __cdecl llrintf(float); _ACRTIMP __int64 __cdecl llround(double); diff --git a/include/msvcrt/stdlib.h b/include/msvcrt/stdlib.h index f1ffcd8c035..f3df662528a 100644 --- a/include/msvcrt/stdlib.h +++ b/include/msvcrt/stdlib.h @@ -238,6 +238,8 @@ _ACRTIMP unsigned __int64 __cdecl _strtoui64_l(const char*,char**,int,_locale_t) _ACRTIMP int __cdecl system(const char*); _ACRTIMP void* __cdecl bsearch(const void*,const void*,size_t,size_t,int (__cdecl *)(const void*,const void*)); _ACRTIMP void __cdecl qsort(void*,size_t,size_t,int (__cdecl *)(const void*,const void*)); +_ACRTIMP void __cdecl qsort_s(void*,size_t,size_t,int (__cdecl *)(void*,const void*,const void*),void*); +_ACRTIMP unsigned int __cdecl _set_abort_behavior(unsigned int flags, unsigned int mask);
typedef void (__cdecl *_purecall_handler)(void); _ACRTIMP _purecall_handler __cdecl _set_purecall_handler(_purecall_handler);