Stub implementation for UuidHash().
This commit is contained in:
parent
29fdbe9f98
commit
2356fbce9e
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue