I am looking at a windows library in IDA pro and I came across a function call
BindW(ushort **, void **)
IDA pro adds the comments Binding and StringBinding respectively to the parameters when they are pushed.
What is this function?
I am looking at a windows library in IDA pro and I came across a function call
BindW(ushort **, void **)
IDA pro adds the comments Binding and StringBinding respectively to the parameters when they are pushed.
What is this function?
It's an undocumented non-exported function. Hex-Rays output is:
RPC_STATUS __stdcall BindW(RPC_WSTR *StringBinding, RPC_BINDING_HANDLE *Binding)
{
RPC_STATUS result; // eax@1
result = RpcStringBindingComposeW(0, L"ncalrpc", 0, L"protected_storage", 0, StringBinding);
if ( !result )
result = RpcBindingFromStringBindingW(*StringBinding, Binding);
return result;
}