1
0
mirror of https://github.com/wine-mirror/wine synced 2024-06-29 06:14:34 +00:00

include: Annotate GdipAlloc with __WINE_(DEALLOC|MALLOC).

This commit is contained in:
Alex Henrie 2022-12-06 22:33:57 -07:00 committed by Alexandre Julliard
parent 5e943f6e1a
commit dfb025c39e

View File

@ -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
}