Commit 2356fbce authored by Huw D M Davies's avatar Huw D M Davies Committed by Alexandre Julliard

Stub implementation for UuidHash().

parent 29fdbe9f
......@@ -24,6 +24,7 @@ debug_channels (ole)
@ stdcall RpcStringBindingComposeW(wstr wstr wstr wstr wstr ptr) RpcStringBindingComposeW
@ stdcall RpcStringFreeA(ptr) RpcStringFreeA
@ stdcall UuidCreate(ptr) UuidCreate
@ stdcall UuidHash(ptr ptr) UuidHash
@ stdcall UuidToStringA(ptr ptr) UuidToStringA
@ stub CStdStubBuffer_QueryInterface
......
......@@ -280,6 +280,20 @@ RPC_STATUS WINAPI RpcStringFreeA(unsigned char** String)
return RPC_S_OK;
}
/*************************************************************************
* UuidHash [RPCRT4.@]
*
* Generates a hash value for a given UUID
*
*/
unsigned short WINAPI UuidHash(UUID *uuid, RPC_STATUS *Status)
{
FIXME("stub:\n");
*Status = RPC_S_OK;
return 0xabcd;
}
/*************************************************************************
* UuidToStringA [RPCRT4.@]
*
......
......@@ -107,6 +107,9 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
#define RpcBindingFromStringBinding WINELIB_NAME_AW(RpcBindingFromStringBinding)
RPCRTAPI unsigned short RPC_ENTRY
UuidHash(UUID *, RPC_STATUS*);
#include "rpcdcep.h"
#endif /*__WINE_RPCDCE_H */
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