The clntraw_create() call creates a client transport handle to use in a single task.
Syntax
#include <rpc\rpc.h> CLIENT * clntraw_create(prognum, versnum) u_long prognum; u_long versnum;
Parameters
prognum
Description
The clntraw_create() call creates a dummy client for the remote double (prognum, versnum). Because messages are passed using a buffer within the address space of the local process, the server should also use the same address space, which simulates RPC programs within one address space. See svcraw_create() for more information.
Return Values
NULL indicates failure.
Related Calls