rpcrt4: Add a stub for RpcErrorStartEnumeration.

This commit is contained in:
Rob Shearman 2007-11-06 15:54:59 +00:00 committed by Alexandre Julliard
parent 8ccf1066eb
commit ebe885d782
2 changed files with 10 additions and 1 deletions

View File

@ -414,7 +414,7 @@
@ stub RpcErrorNumberOfRecords # wxp
@ stub RpcErrorResetEnumeration # wxp
@ stub RpcErrorSaveErrorInfo # wxp
@ stub RpcErrorStartEnumeration # wxp
@ stdcall RpcErrorStartEnumeration(ptr)
@ stub RpcFreeAuthorizationContext # wxp
@ stub RpcGetAsyncCallStatus
@ stub RpcIfIdVectorFree

View File

@ -828,3 +828,12 @@ DWORD WINAPI I_RpcMapWin32Status(RPC_STATUS status)
FIXME("(%ld): stub\n", status);
return 0;
}
/******************************************************************************
* RpcErrorStartEnumeration (rpcrt4.@)
*/
RPC_STATUS RPC_ENTRY RpcErrorStartEnumeration(void** EnumHandle)
{
FIXME("(%p): stub\n", EnumHandle);
return RPC_S_ENTRY_NOT_FOUND;
}