1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-08 03:45:57 +00:00

wsdapi: Annotate duplicate_(string|name) with __WINE_MALLOC.

This commit is contained in:
Alex Henrie 2022-12-08 20:37:09 -07:00 committed by Alexandre Julliard
parent 640e9766fd
commit 702b92ad23

View File

@ -95,8 +95,8 @@ HRESULT read_message(IWSDiscoveryPublisherImpl *impl, const char *xml, int xml_l
/* xml.c */
LPWSTR duplicate_string(void *parentMemoryBlock, LPCWSTR value);
WSDXML_NAME *duplicate_name(void *parentMemoryBlock, WSDXML_NAME *name);
WCHAR *duplicate_string(void *parent_memory_block, const WCHAR *value) __WINE_MALLOC;
WSDXML_NAME *duplicate_name(void *parent_memory_block, WSDXML_NAME *name) __WINE_MALLOC;
WSDXML_NAMESPACE *xml_context_find_namespace_by_prefix(IWSDXMLContext *context, LPCWSTR prefix);
#endif