1
0
Fork 0
mirror of synced 2025-03-07 03:53:26 +01: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);