SetSettableParameterValue

Sets the value of a NetWare server console parameter.

Library:LibC
Classification:NetWare OS
Service:NetWare Platform

Syntax

  #include <netware.h> 
   
  int SetSettableParameterValue (
     int           slot,
     const char   *name,
     void         *newValue);
  

Parameters

slot

(IN) Specifies the connection slot of the user who wants to modify server console parameters. For an NLM, set this to 0.

name

(IN) Points to a null-terminated ASCIIZ string representing the name of the server console parameter. This string is case insensitive but must contain the exact wording of the parameter.

newValue

(IN) Points to the new value of the server console parameter.

Return Values

If successful, returns 0. Otherwise, returns -1.

Remarks

A settable parameter is a NetWare OS parameter that can be set using the SET console command.

The SetSettableParameterValue is actually a macro for SetSetableParameter, which is the name that appears in the NetWare debugger.

See Also