Goto: 4C Home | 4C Docs | System PCLs List sys.set_extfnopt()

sys.set_extfnopt()

Purpose:
sys.set_extfnopt() allows the application to set certain options for a 4C External Library.
Usage:
ret = sys.set_extfnopt(<extlibname>,<optname>,<optval>);
Arguments:

alpha <extlibname> - The name of the library.

alpha <optname> - The name of the option.

alpha <optval> - The value to set the option to.
Returns:
integer <ret> - 0 - OK
< 0 - Error
Where Used:
sys.set_extfnopt() can be called from any 4C program that uses the library <extlibname>.
Example:
sys.set_extfnopt("FCCom","MessageLevel","1");
Description:
There are several options that can be set on a 4C External Library. Setting these options only affects the current 4C program that is using the library. The options that can be set are:
Requirements
4csrvr version 5.8.7 or later.
Bugs/Features/Comments:
Bugs
See Also:
sys.get_extfnopt()
Sys PCLs List


Back to Top