Added an empty implementation for UuidFromStringA/W.
This commit is contained in:
parent
4301d3e5c6
commit
161f555a06
|
@ -177,8 +177,8 @@ init RPCRT4_LibMain
|
||||||
@ stdcall UuidCreateSequential(ptr) UuidCreateSequential # win 2000
|
@ stdcall UuidCreateSequential(ptr) UuidCreateSequential # win 2000
|
||||||
@ stub UuidCreateNil
|
@ stub UuidCreateNil
|
||||||
@ stub UuidEqual
|
@ stub UuidEqual
|
||||||
@ stub UuidFromStringA
|
@ stdcall UuidFromStringA(ptr ptr) UuidFromStringA
|
||||||
@ stub UuidFromStringW
|
@ stdcall UuidFromStringW(ptr ptr) UuidFromStringW
|
||||||
@ stdcall UuidHash(ptr ptr) UuidHash
|
@ stdcall UuidHash(ptr ptr) UuidHash
|
||||||
@ stub UuidIsNil
|
@ stub UuidIsNil
|
||||||
@ stdcall UuidToStringA(ptr ptr) UuidToStringA
|
@ stdcall UuidToStringA(ptr ptr) UuidToStringA
|
||||||
|
|
|
@ -358,6 +358,24 @@ RPC_STATUS WINAPI UuidToStringA(UUID *Uuid, unsigned char** StringUuid)
|
||||||
return RPC_S_OK;
|
return RPC_S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* UuidFromStringA (RPCRT4.@)
|
||||||
|
*/
|
||||||
|
RPC_STATUS WINAPI UuidFromStringA(unsigned char *str, UUID *uuid)
|
||||||
|
{
|
||||||
|
FIXME("%s %p\n",debugstr_a(str),uuid);
|
||||||
|
return RPC_S_INVALID_STRING_UUID;
|
||||||
|
}
|
||||||
|
|
||||||
|
/***********************************************************************
|
||||||
|
* UuidFromStringW (RPCRT4.@)
|
||||||
|
*/
|
||||||
|
RPC_STATUS WINAPI UuidFromStringW(unsigned short *str, UUID *uuid)
|
||||||
|
{
|
||||||
|
FIXME("%s %p\n",debugstr_w(str),uuid);
|
||||||
|
return RPC_S_INVALID_STRING_UUID;
|
||||||
|
}
|
||||||
|
|
||||||
/***********************************************************************
|
/***********************************************************************
|
||||||
* NdrDllRegisterProxy (RPCRT4.@)
|
* NdrDllRegisterProxy (RPCRT4.@)
|
||||||
*/
|
*/
|
||||||
|
@ -584,4 +602,3 @@ HRESULT WINAPI RPCRT4_DllRegisterServer( void )
|
||||||
FIXME( "(): stub\n" );
|
FIXME( "(): stub\n" );
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue