Module: wine Branch: master Commit: dfb025c39ea254f270707cfb693dae3b83cb3231 URL: https://gitlab.winehq.org/wine/wine/-/commit/dfb025c39ea254f270707cfb693dae3...
Author: Alex Henrie alexhenrie24@gmail.com Date: Tue Dec 6 22:33:57 2022 -0700
include: Annotate GdipAlloc with __WINE_(DEALLOC|MALLOC).
---
include/gdiplusmem.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/include/gdiplusmem.h b/include/gdiplusmem.h index fad8ed6772d..896fdf43a03 100644 --- a/include/gdiplusmem.h +++ b/include/gdiplusmem.h @@ -25,8 +25,8 @@ extern "C" { #endif
-void* WINGDIPAPI GdipAlloc(SIZE_T) __WINE_ALLOC_SIZE(1); void WINGDIPAPI GdipFree(void*); +void* WINGDIPAPI GdipAlloc(SIZE_T) __WINE_ALLOC_SIZE(1) __WINE_DEALLOC(GdipFree) __WINE_MALLOC;
#ifdef __cplusplus }