| << Prev | appCORE Programming Guide | Next >> |
NAME
coreNetOptionClear() -- clear, or reset, the netCORE option
SYNOPSIS
include "appcore.h" int coreNetOptionClear( coreNetOptionSPEC_t* s, coreNetOption_t o )
DESCRIPTION
The coreNetOptionClear() function clears, or resets, the netCORE option. The available options are enumerated via the coreNetOption_t data type.
PARAMETERS
s pointer to a coreNetOptionSPEC_t data type. o one of the enumerated channel options.
Sample Code
coreNetOptionSPEC_t Spec; // Clear the channel message option coreNetOptionClear( &Spec, coreNetChanOptionMSG );
RETURN VALUE
| errno Value | Condition |
| EINVAL | pointer to option specification is NULL. |
MULTI-THREAD SAFETY LEVEL
MT-safe.
SEE ALSO
| << Prev | appCORE Programming Guide | Next >> |