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

include: Annotate WSDAllocateLinkedMemory with __WINE_(ALLOC_SIZE|MALLOC).

This commit is contained in:
Alex Henrie 2022-12-07 00:23:57 -07:00 committed by Alexandre Julliard
parent 5f89b343b0
commit 803c616f7e

View File

@ -19,7 +19,7 @@
#ifndef WSDUTIL_H
#define WSDUTIL_H
void * WINAPI WSDAllocateLinkedMemory(void *pParent, SIZE_T cbSize);
void * WINAPI WSDAllocateLinkedMemory(void *parent, SIZE_T size) __WINE_ALLOC_SIZE(2) __WINE_MALLOC;
void WINAPI WSDAttachLinkedMemory(void *pParent, void *pChild);
void WINAPI WSDDetachLinkedMemory(void *pVoid);
void WINAPI WSDFreeLinkedMemory(void *pVoid);