theConfig 10.0
Loading...
Searching...
No Matches
LcSettingC_Class_TCL_API

LcSettingC - define the class … More...

+ Collaboration diagram for LcSettingC_Class_TCL_API:

Functions

static OT_ProcRet tcllcconfig_LcSettingC_HandleResolve (OtClass_ARGS)
  Tcl: (static) LcSettingC [LcSettingC HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a LcSettingC from netHdl or "MK_NULL" if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet tcllcconfig_LcSettingC_HandleGet (LcSettingC_ARGS)
 
static OT_ProcRet tcllcconfig_LcSettingC_Next (LcSettingC_ARGS)
  Tcl: LcSettingC [$cfs Next] C-API
get next instance from linked-list of LcSettingS type
 
static OT_ProcRet tcllcconfig_LcSettingC_Prev (LcSettingC_ARGS)
  Tcl: LcSettingC [$cfs Prev] C-API
get previous instance from linked-list of LcSettingS type
 
static OT_ProcRet tcllcconfig_LcSettingC_Instances (OtClass_ARGS)
  Tcl: (static) LcSettingC [LcSettingC Instances] C-API
get head-instance from linked-list of LcSettingS type …
 
static OT_ProcRet tcllcconfig_LcSettingC_GetNull (OtClass_ARGS)
  Tcl: (static) LcSettingC [LcSettingC GetNull] C-API
Null-Slot - return a LcSettingC typed NULL instance …
 

Detailed Description

LcSettingC - define the class …

Function Documentation

◆ tcllcconfig_LcSettingC_GetNull()

static OT_ProcRet tcllcconfig_LcSettingC_GetNull ( OtClass_ARGS )
static

Tcl: (static) LcSettingC [LcSettingC GetNull] C-API
Null-Slot - return a LcSettingC typed NULL instance …

Definition at line 289 of file LcSettingC_tcl.c.

289 {
293 LC_CFS retVal = LcSettingGetNull ();
294 OT_retObj_SET_CFS(retVal);
295 goto end;
296 error:
298 end:
300}
#define GetNull_doc
#define OT_SETUP_hdl_static
#define OT_retObj_SET_CFS(nat)
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
static LC_CFS LcSettingGetNull(void)
Null-Slot - return a LcSettingC typed NULL instance …
Struct to represent the data from the LcSettingC …

◆ tcllcconfig_LcSettingC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet tcllcconfig_LcSettingC_HandleGet ( LcSettingC_ARGS )
static

Definition at line 224 of file LcSettingC_tcl.c.

#define OT_ERROR_LNG_RETURN

◆ tcllcconfig_LcSettingC_HandleResolve()

static OT_ProcRet tcllcconfig_LcSettingC_HandleResolve ( OtClass_ARGS )
static

Tcl: (static) LcSettingC [LcSettingC HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a LcSettingC from netHdl or "MK_NULL" if invalid…

Definition at line 205 of file LcSettingC_tcl.c.

205 {
208 MK_HDL netHdl = 0;
211 LC_CFS retVal = LcSettingHandleResolve (netHdl);
212 OT_retObj_SET_CFS(retVal);
213 goto end;
214 error:
216 end:
218}
#define HandleResolve_doc
#define OT_CHECK_NIH(val)
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define LcSettingHandleResolve(...)
int32_t MK_HDL

◆ tcllcconfig_LcSettingC_Instances()

static OT_ProcRet tcllcconfig_LcSettingC_Instances ( OtClass_ARGS )
static

Tcl: (static) LcSettingC [LcSettingC Instances] C-API
get head-instance from linked-list of LcSettingS type …

Definition at line 266 of file LcSettingC_tcl.c.

266 {
270 LC_CFS retVal = LcSettingInstances ();
271 OT_retObj_SET_CFS(retVal);
272 goto end;
273 error:
275 end:
277}
#define Instances_doc
#define LcSettingInstances()

◆ tcllcconfig_LcSettingC_Next()

static OT_ProcRet tcllcconfig_LcSettingC_Next ( LcSettingC_ARGS )
static

Tcl: LcSettingC [$cfs Next] C-API
get next instance from linked-list of LcSettingS type

Definition at line 236 of file LcSettingC_tcl.c.

236 {
240 LC_CFS retVal = LcSettingNext (hdl);
241 OT_retObj_SET_CFS(retVal);
242 goto end;
243 error:
245 end:
247}
#define OT_SETUP_hdl
#define Next_doc
static LC_CFS LcSettingNext(LC_CFS const cfs)
get next instance from linked-list of LcSettingS type

◆ tcllcconfig_LcSettingC_Prev()

static OT_ProcRet tcllcconfig_LcSettingC_Prev ( LcSettingC_ARGS )
static

Tcl: LcSettingC [$cfs Prev] C-API
get previous instance from linked-list of LcSettingS type

Definition at line 250 of file LcSettingC_tcl.c.

250 {
254 LC_CFS retVal = LcSettingPrev (hdl);
255 OT_retObj_SET_CFS(retVal);
256 goto end;
257 error:
259 end:
261}
#define Prev_doc
static LC_CFS LcSettingPrev(LC_CFS const cfs)
get previous instance from linked-list of LcSettingS type