Stub implementation for UuidHash().

This commit is contained in:
Huw D M Davies 2001-09-07 15:25:51 +00:00 committed by Alexandre Julliard
parent 29fdbe9f98
commit 2356fbce9e
3 changed files with 18 additions and 0 deletions

View File

@ -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

View File

@ -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.@]
*

View File

@ -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 */