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

include: Annotate I_RpcAllocate with __WINE_(ALLOC_SIZE|DEALLOC|MALLOC).

This commit is contained in:
Alex Henrie 2022-11-29 20:06:07 -07:00 committed by Alexandre Julliard
parent b98c2a757e
commit 41b4d9b301

View File

@ -152,10 +152,11 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
RPCRTAPI RPC_STATUS RPC_ENTRY
I_RpcReceive( RPC_MESSAGE* Message );
RPCRTAPI void* RPC_ENTRY
I_RpcAllocate( unsigned int Size );
RPCRTAPI void RPC_ENTRY
I_RpcFree( void* Object );
RPCRTAPI void* RPC_ENTRY
I_RpcAllocate( unsigned int Size )
__WINE_ALLOC_SIZE(1) __WINE_DEALLOC(I_RpcFree) __WINE_MALLOC;
RPCRTAPI RPC_BINDING_HANDLE RPC_ENTRY
I_RpcGetCurrentCallHandle( void );