theConfig 10.0
Loading...
Searching...
No Matches
LcSettingC_Class_PY_API

LcSettingC - define the class … More...

+ Collaboration diagram for LcSettingC_Class_PY_API:

Functions

static OT_ProcRet pylcconfig_LcSettingC_HandleResolve (OtClass_ARGS)
  Python: [static] LcSettingC LcSettingC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a LcSettingC from netHdl or None if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet pylcconfig_LcSettingC_HandleGet (LcSettingC_ARGS)
 
static OT_ProcRet pylcconfig_LcSettingC_Next (LcSettingC_ARGS)
  Python: LcSettingC cfs.Next() C-API
get next instance from linked-list of LcSettingS type
 
static OT_ProcRet pylcconfig_LcSettingC_Prev (LcSettingC_ARGS)
  Python: LcSettingC cfs.Prev() C-API
get previous instance from linked-list of LcSettingS type
 
static OT_ProcRet pylcconfig_LcSettingC_Instances (OtClass_ARGS)
  Python: [static] LcSettingC LcSettingC.Instances() C-API
get head-instance from linked-list of LcSettingS type …
 
static OT_ProcRet pylcconfig_LcSettingC_GetNull (OtClass_ARGS)
  Python: [static] LcSettingC LcSettingC.GetNull() C-API
Null-Slot - return a LcSettingC typed NULL instance …
 

Detailed Description

LcSettingC - define the class …

Method definition

Function Documentation

◆ pylcconfig_LcSettingC_GetNull()

static OT_ProcRet pylcconfig_LcSettingC_GetNull ( OtClass_ARGS )
static

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

Definition at line 269 of file LcSettingC_py.c.

269 {
273 LC_CFS retVal = LcSettingGetNull ();
274 OT_retObj_SET_CFS(retVal);
275 goto end;
276 error:
278 end:
280}
#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 …

◆ pylcconfig_LcSettingC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet pylcconfig_LcSettingC_HandleGet ( LcSettingC_ARGS )
static

Definition at line 204 of file LcSettingC_py.c.

#define OT_ERROR_LNG_RETURN

◆ pylcconfig_LcSettingC_HandleResolve()

static OT_ProcRet pylcconfig_LcSettingC_HandleResolve ( OtClass_ARGS )
static

Python: [static] LcSettingC LcSettingC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a LcSettingC from netHdl or None if invalid…

Definition at line 185 of file LcSettingC_py.c.

185 {
188 MK_HDL netHdl = 0;
191 LC_CFS retVal = LcSettingHandleResolve (netHdl);
192 OT_retObj_SET_CFS(retVal);
193 goto end;
194 error:
196 end:
198}
#define HandleResolve_doc
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define LcSettingHandleResolve(...)
int32_t MK_HDL
#define OT_CHECK_NIH(val)

◆ pylcconfig_LcSettingC_Instances()

static OT_ProcRet pylcconfig_LcSettingC_Instances ( OtClass_ARGS )
static

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

Definition at line 246 of file LcSettingC_py.c.

246 {
250 LC_CFS retVal = LcSettingInstances ();
251 OT_retObj_SET_CFS(retVal);
252 goto end;
253 error:
255 end:
257}
#define Instances_doc
#define LcSettingInstances()

◆ pylcconfig_LcSettingC_Next()

static OT_ProcRet pylcconfig_LcSettingC_Next ( LcSettingC_ARGS )
static

Python: LcSettingC cfs.Next() C-API
get next instance from linked-list of LcSettingS type

Definition at line 216 of file LcSettingC_py.c.

216 {
220 LC_CFS retVal = LcSettingNext (hdl);
221 OT_retObj_SET_CFS(retVal);
222 goto end;
223 error:
225 end:
227}
#define OT_SETUP_hdl
#define Next_doc
static LC_CFS LcSettingNext(LC_CFS const cfs)
get next instance from linked-list of LcSettingS type

◆ pylcconfig_LcSettingC_Prev()

static OT_ProcRet pylcconfig_LcSettingC_Prev ( LcSettingC_ARGS )
static

Python: LcSettingC cfs.Prev() C-API
get previous instance from linked-list of LcSettingS type

Definition at line 230 of file LcSettingC_py.c.

230 {
234 LC_CFS retVal = LcSettingPrev (hdl);
235 OT_retObj_SET_CFS(retVal);
236 goto end;
237 error:
239 end:
241}
#define Prev_doc
static LC_CFS LcSettingPrev(LC_CFS const cfs)
get previous instance from linked-list of LcSettingS type