RtmDeregisterClient

[This is preliminary documentation and subject to change.]

The RtmDeregisterClient function deregisters the client, and frees resources associated with the client.

DWORD RtmDeregisterClient(
  HANDLE ClientHandle      // handle that identifies the client
);
 

Parameters

ClientHandle
A handle that identifies the client to deregister. Obtain this handle by calling RtmRegisterClient.

Return Values

NO_ERROR
The client was deregistered successfully.
ERROR_INVALID_HANDLE
The ClientHandle parameter is not a valid RTM handle.
ERROR_NO_SYSTEM_RESOURCES
Insufficient resources to carry out the operation.

Remarks

This function removes all routes that were added by the client.

QuickInfo

  Windows NT: Use version 5.0 and later.
  Windows: Unsupported.
  Windows CE: Unsupported.
  Header: Declared in rtm.h.
  Import Library: Link with rtm.lib.

See Also

RtmRegisterClient