mirror of
https://github.com/reactos/wine.git
synced 2025-02-21 13:23:25 +00:00
rpcrt4: Implement I_RpcAllocate and I_RpcFree.
This commit is contained in:
parent
cc9baf364e
commit
84ab2e78a4
@ -19,7 +19,7 @@
|
||||
@ stdcall IUnknown_QueryInterface_Proxy(ptr ptr ptr)
|
||||
@ stdcall IUnknown_Release_Proxy(ptr)
|
||||
@ stub I_RpcAbortAsyncCall
|
||||
@ stub I_RpcAllocate
|
||||
@ stdcall I_RpcAllocate(long)
|
||||
@ stub I_RpcAsyncAbortCall
|
||||
@ stub I_RpcAsyncSendReceive # NT4
|
||||
@ stub I_RpcAsyncSetHandle
|
||||
@ -45,7 +45,7 @@
|
||||
@ stub I_RpcDeleteMutex
|
||||
@ stub I_RpcEnableWmiTrace # wxp
|
||||
@ stub I_RpcExceptionFilter # wxp
|
||||
@ stub I_RpcFree
|
||||
@ stdcall I_RpcFree(ptr)
|
||||
@ stdcall I_RpcFreeBuffer(ptr)
|
||||
@ stub I_RpcFreePipeBuffer
|
||||
@ stub I_RpcGetAssociationContext
|
||||
|
@ -800,3 +800,19 @@ RPC_STATUS RPC_ENTRY DceErrorInqTextA (RPC_STATUS e, unsigned char *buffer)
|
||||
}
|
||||
return status;
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* I_RpcAllocate (rpcrt4.@)
|
||||
*/
|
||||
void * WINAPI I_RpcAllocate(unsigned int Size)
|
||||
{
|
||||
return HeapAlloc(GetProcessHeap(), 0, Size);
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* I_RpcFree (rpcrt4.@)
|
||||
*/
|
||||
void WINAPI I_RpcFree(void *Object)
|
||||
{
|
||||
HeapFree(GetProcessHeap(), 0, Object);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user