home *** CD-ROM | disk | FTP | other *** search
- MESSAGE SERVICES
- ================
-
- --------------------------------------------------------------------------------
-
- BroadcastToConsole (Message : ConsoleMessageType) : WORD;
-
- Broadcasts a message to the default file server's system console.
-
- Message (Input) : string containing message to send.
-
- --------------------------------------------------------------------------------
-
- CheckPipeStatus (ConnectionList : ConnectionListType;
- VAR ResultList : ConnectionListType;
- VAR ConnectionCount : BYTE) : WORD;
-
- Allows a client to monitor the status of one or more of its message pipes.
- NOTE : Netware 286 only.
-
- ConnectionList (Input) : list of connections with which to check.
-
- ResultList (Output) : list of status codes for each connection
- in ConnectionList.
-
- ConnectionCount (Output) : Number of message pipes that the
- requesting workstation wants to monitor.
-
- --------------------------------------------------------------------------------
-
- CloseMessagePipe (ConnectionList : ConnectionListType;
- VAR ResultList : ConnectionListType;
- VAR ConnectionCount : BYTE) : WORD;
-
- Closes the requesting workstation's half of one or more message pipes
- offered to one or more logical connections on the default file server.
- NOTE : Netware 286 only.
-
- ConnectionList (Input) : list of connections with which to close
- a pipe.
-
- ResultList (Output) : list of status codes for each connection
- in ConnectionList.
-
- ConnectionCount (Output) : Number of message pipes that the
- requesting workstation wants to close.
-
- --------------------------------------------------------------------------------
-
- DisableBroadcasts : WORD;
-
- Disables message reception.
-
- --------------------------------------------------------------------------------
-
- EnableBroadcasts : WORD;
-
- Enables message reception.
-
- --------------------------------------------------------------------------------
-
- GetBroadcastMessage (VAR Message : BroadcastMessageType) : WORD;
-
- Enables an application to poll for and return a broadcast message from the
- default file server.
-
- Message (Output) : string containing the message.
-
- --------------------------------------------------------------------------------
-
- GetBroadcastMode : WORD;
-
- Returns the message mode of the requesting workstation.
-
- --------------------------------------------------------------------------------
-
- GetPersonalMessage (VAR Message : PersonalMessageType;
- VAR SourceConnection : WORD) : WORD;
-
- Enables an application to poll for and return the next message in the
- requesting workstation's pipe queue on the default server.
- NOTE : Netware 286 only.
-
- Message (Output) : string containing the oldest message.
-
- SourceConnection (Output) : connection number of the sending
- station.
-
- --------------------------------------------------------------------------------
-
- LogNetworkMessage (Message : ConsoleMessageType) : WORD;
-
- Logs a message to the default file server's NET$LOG.MSG file.
-
- Message (Input) : message to be logged.
-
- --------------------------------------------------------------------------------
-
- OpenMessagePipe (ConnectionList : ConnectionListType;
- VAR ResultList : ConnectionListType;
- VAR ConnectionCount : BYTE) : WORD;
-
- Creates the requesting workstation's half of one or more message pipes
- offered to one or more logical connections on the default file server.
- NOTE : Netware 286 only.
-
- ConnectionList (Input) : list of connections with which to open
- a pipe.
-
- ResultList (Output) : list of status codes for each connection
- in ConnectionList.
-
- ConnectionCount (Output) : Number of message pipes that the
- requesting workstation wants to open.
-
- --------------------------------------------------------------------------------
-
- SendBroadcastMessage (Message : BroadcastMessageType;
- ConnectionList : ConnectionListType;
- VAR ResultList : ConnectionListType;
- ConnectionCount : BYTE) : WORD;
-
- Sends a broadcast message to the specified logical connection(s) on the
- default file server.
-
- Message (Input) : message to be sent.
-
- ConnectionList (Input) : list of connection numbers who will
- receive the message.
-
- ResultList (Output) : list of status codes for each connection
- in ConnectionList.
-
- ConnectionCount (Output) : Number of message pipes that the
- requesting workstation wants to send to.
-
- --------------------------------------------------------------------------------
-
- SendPersonalMessage (Message : PersonalMessageType;
- ConnectionList : ConnectionListType;
- VAR ResultList : ConnectionListType;
- ConnectionCount : BYTE) : WORD;
-
- Sends a pipe message to the specified logical connection(s) on the default
- file server.
- NOTE : Netware 286 only.
-
- Message (Input) : message to be sent.
-
- ConnectionList (Input) : list of connection numbers who will
- receive the message.
-
- ResultList (Output) : list of status codes for each connection
- in ConnectionList.
-
- ConnectionCount (Output) : Number of message pipes that the
- requesting workstation wants to send to.
-
- --------------------------------------------------------------------------------
-
- SetBroadcastMode (BroadcaseMode : WORD);
-
- Sets the message mode of the requesting workstation.
-
- ------------------------------------------------------------------------------