theConfig 10.0
Loading...
Searching...
No Matches
LcConfigC_Class_TCL_API

LcConfigC - define the class … More...

+ Collaboration diagram for LcConfigC_Class_TCL_API:

Functions

static OT_ProcRet tcllcconfig_LcConfigC_HandleResolve (OtClass_ARGS)
  Tcl: (static) LcConfigC [LcConfigC HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a LcConfigC from netHdl or "MK_NULL" if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet tcllcconfig_LcConfigC_HandleGet (LcConfigC_ARGS)
 
static OT_ProcRet tcllcconfig_LcConfigC_Next (LcConfigC_ARGS)
  Tcl: LcConfigC [$cfg Next] C-API
get next instance from linked-list of LcConfigS type
 
static OT_ProcRet tcllcconfig_LcConfigC_Prev (LcConfigC_ARGS)
  Tcl: LcConfigC [$cfg Prev] C-API
get previous instance from linked-list of LcConfigS type
 
static OT_ProcRet tcllcconfig_LcConfigC_Instances (OtClass_ARGS)
  Tcl: (static) LcConfigC [LcConfigC Instances] C-API
get head-instance from linked-list of LcConfigS type …
 
static OT_ProcRet tcllcconfig_LcConfigC_GetNull (OtClass_ARGS)
  Tcl: (static) LcConfigC [LcConfigC GetNull] C-API
Null-Slot - return a LcConfigC typed NULL instance …
 

Detailed Description

LcConfigC - define the class …

Function Documentation

◆ tcllcconfig_LcConfigC_GetNull()

static OT_ProcRet tcllcconfig_LcConfigC_GetNull ( OtClass_ARGS )
static

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

Definition at line 271 of file LcConfigC_tcl.c.

271 {
275 LC_CFG retVal = LcConfigGetNull ();
276 OT_retObj_SET_CFG(retVal);
277 goto end;
278 error:
280 end:
282}
#define GetNull_doc
#define OT_SETUP_hdl_static
#define OT_retObj_SET_CFG(nat)
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
static LC_CFG LcConfigGetNull(void)
Null-Slot - return a LcConfigC typed NULL instance …
Struct to represent the data from the LcConfigC …

◆ tcllcconfig_LcConfigC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet tcllcconfig_LcConfigC_HandleGet ( LcConfigC_ARGS )
static

Definition at line 206 of file LcConfigC_tcl.c.

#define OT_ERROR_LNG_RETURN

◆ tcllcconfig_LcConfigC_HandleResolve()

static OT_ProcRet tcllcconfig_LcConfigC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 187 of file LcConfigC_tcl.c.

187 {
190 MK_HDL netHdl = 0;
193 LC_CFG retVal = LcConfigHandleResolve (netHdl);
194 OT_retObj_SET_CFG(retVal);
195 goto end;
196 error:
198 end:
200}
#define HandleResolve_doc
#define OT_CHECK_NIH(val)
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define LcConfigHandleResolve(...)
int32_t MK_HDL

◆ tcllcconfig_LcConfigC_Instances()

static OT_ProcRet tcllcconfig_LcConfigC_Instances ( OtClass_ARGS )
static

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

Definition at line 248 of file LcConfigC_tcl.c.

248 {
252 LC_CFG retVal = LcConfigInstances ();
253 OT_retObj_SET_CFG(retVal);
254 goto end;
255 error:
257 end:
259}
#define Instances_doc
#define LcConfigInstances()

◆ tcllcconfig_LcConfigC_Next()

static OT_ProcRet tcllcconfig_LcConfigC_Next ( LcConfigC_ARGS )
static

Tcl: LcConfigC [$cfg Next] C-API
get next instance from linked-list of LcConfigS type

Definition at line 218 of file LcConfigC_tcl.c.

218 {
222 LC_CFG retVal = LcConfigNext (hdl);
223 OT_retObj_SET_CFG(retVal);
224 goto end;
225 error:
227 end:
229}
#define OT_SETUP_hdl
#define Next_doc
static LC_CFG LcConfigNext(LC_CFG const cfg)
get next instance from linked-list of LcConfigS type

◆ tcllcconfig_LcConfigC_Prev()

static OT_ProcRet tcllcconfig_LcConfigC_Prev ( LcConfigC_ARGS )
static

Tcl: LcConfigC [$cfg Prev] C-API
get previous instance from linked-list of LcConfigS type

Definition at line 232 of file LcConfigC_tcl.c.

232 {
236 LC_CFG retVal = LcConfigPrev (hdl);
237 OT_retObj_SET_CFG(retVal);
238 goto end;
239 error:
241 end:
243}
#define Prev_doc
static LC_CFG LcConfigPrev(LC_CFG const cfg)
get previous instance from linked-list of LcConfigS type