theConfig 10.0
Loading...
Searching...
No Matches
LcSettingC_TOR_ATL_API

LcSettingC - various functions to create, initialize and destroy … More...

+ Collaboration diagram for LcSettingC_TOR_ATL_API:

Functions

static OT_ProcRet atllcconfig_LcSettingC_Add (LcSettingC_ARGS)
  Atl: (constructor) LcSettingC [LcSettingC::Add $parent name:string __type:LcConfigTypeE] C-API
This function adds a new child setting or element to the setting parent, which must be a group, array, or list …
 
static OT_ProcRet atllcconfig_LcSettingC_GetConfig (LcSettingC_ARGS)
  Atl: LcConfigC [LcSettingC::GetConfig $setting] C-API
addon - return the LcConfigC from the LcSettingC
 

Detailed Description

LcSettingC - various functions to create, initialize and destroy …

Function Documentation

◆ atllcconfig_LcSettingC_Add()

static OT_ProcRet atllcconfig_LcSettingC_Add ( LcSettingC_ARGS )
static

Atl: (constructor) LcSettingC [LcSettingC::Add $parent name:string __type:LcConfigTypeE] C-API
This function adds a new child setting or element to the setting parent, which must be a group, array, or list …

Definition at line 1118 of file LcSettingC_atl.c.

1118 {
1121 MK_STRN name = 0;
1123 enum LcConfigTypeE __type = 0;
1126 LC_CFS retVal = LcSettingAdd (hdl, name, __type);
1127 if (retVal == NULL) {
1128 OT_ERROR_CONSTRUCTOR(LcSettingC);
1129 goto error;
1130 }
1131 OT_retObj_SET_CFS(retVal);
1132 goto end;
1133 error:
1135 end:
1137}
#define OT_SETUP_hdl
#define Add_doc
#define OT_retObj_SET_CFS(nat)
#define OT_SETUP_VARARGS(min, max, d)
#define OT_retObj_SET_Error
#define OT_ERROR_CONSTRUCTOR(class)
#define OT_CHECK_REQUIRED(val)
#define OT_CHECK_ENUM(ename, val)
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_CHECK_STRN(val)
LcConfigTypeE
define the data-type of a LcSettingC …
Definition LcEnum_lc.h:78
static LC_CFS LcSettingAdd(LC_CFS parent, MK_STRN name, enum LcConfigTypeE __type)
This function adds a new child setting or element to the setting parent, which must be a group,...
const MK_STRB * MK_STRN
Struct to represent the data from the LcSettingC …

◆ atllcconfig_LcSettingC_GetConfig()

static OT_ProcRet atllcconfig_LcSettingC_GetConfig ( LcSettingC_ARGS )
static

Atl: LcConfigC [LcSettingC::GetConfig $setting] C-API
addon - return the LcConfigC from the LcSettingC

Definition at line 1142 of file LcSettingC_atl.c.

1142 {
1146 LC_CFG retVal = LcSettingGetConfig (hdl);
1147 OT_retObj_SET_CFG(retVal);
1148 goto end;
1149 error:
1151 end:
1153}
#define GetConfig_doc
#define OT_retObj_SET_CFG(nat)
#define OT_SETUP_NOARG(d)
static LC_CFG LcSettingGetConfig(LC_CFSN setting)
addon - return the LcConfigC from the LcSettingC …
Struct to represent the data from the LcConfigC …