windows - How to invoke NdrClientCall2() function directly? -
Does anybody know that the code can be called in the rpcrt4.dll code in the NdrClientCall2 () function Is it or how it can be used?
We have gone through MSDN support,
but no examples / samples have been found to use this function.
Please provide help.
Thank you.
Usually you never call it directly - this requires a very difficult parameter Which is prepared in a particularly difficult manner. Instead, you use IDL to specify your RPC interface, compile it with MIDL and it gives you a client proxy that calls that function with the appropriate parameters.
Comments
Post a Comment