Commit 41b4d9b3 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

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

parent b98c2a75
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment