NWDisableBroadcasts

Informs the server a client does not want to receive messages from other client

Local Servers:blocking
Remote Servers:blocking
NetWare Server:3.11, 3.12, 3.2, 4.x, 5.x, 6.x
Platform:NLM, Windows NT, Windows 95, Windows 98
Library:Cross-Platform NetWare Calls (CAL*.*)
Service:Message

Syntax

C

  #include <nwmsg.h> 
  or 
  #include <nwcalls.h> 
   
  NWCCODE N_API  NWDisableBroadcasts  ( 
     NWCONN_HANDLE   conn);
  

Delphi

  uses calwin32 
   
  Function NWDisableBroadcasts 
    (conn : NWCONN_HANDLE 
  ) : NWCCODE;
  

Parameters

conn
(IN) Specifies the NetWare server connection handle.

Return Values

These are common return values; see Return Values (Return Values for C) for more information.

0x0000

SUCCESSFUL

0x89FF

Broadcast Disabled

Remarks

After calling NWDisableBroadcasts, the server does not allow other clients to log messages for forwarding to this client. If another client attempts to broadcast to a client with broadcast disabled, 0x89FF (failed) is returned. NWDisableBroadcasts can be used by any client.

NCP Calls

See Also

NWEnableBroadcasts