theConfig 10.0
Loading...
Searching...
No Matches
LcConfigC_Class_PY_API

LcConfigC - define the class … More...

+ Collaboration diagram for LcConfigC_Class_PY_API:

Functions

static OT_ProcRet pylcconfig_LcConfigC_HandleResolve (OtClass_ARGS)
  Python: [static] LcConfigC LcConfigC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a LcConfigC from netHdl or None if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet pylcconfig_LcConfigC_HandleGet (LcConfigC_ARGS)
 
static OT_ProcRet pylcconfig_LcConfigC_Next (LcConfigC_ARGS)
  Python: LcConfigC cfg.Next() C-API
get next instance from linked-list of LcConfigS type
 
static OT_ProcRet pylcconfig_LcConfigC_Prev (LcConfigC_ARGS)
  Python: LcConfigC cfg.Prev() C-API
get previous instance from linked-list of LcConfigS type
 
static OT_ProcRet pylcconfig_LcConfigC_Instances (OtClass_ARGS)
  Python: [static] LcConfigC LcConfigC.Instances() C-API
get head-instance from linked-list of LcConfigS type …
 
static OT_ProcRet pylcconfig_LcConfigC_GetNull (OtClass_ARGS)
  Python: [static] LcConfigC LcConfigC.GetNull() C-API
Null-Slot - return a LcConfigC typed NULL instance …
 

Detailed Description

LcConfigC - define the class …

Method definition

Function Documentation

◆ pylcconfig_LcConfigC_GetNull()

static OT_ProcRet pylcconfig_LcConfigC_GetNull ( OtClass_ARGS )
static

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

Definition at line 249 of file LcConfigC_py.c.

249 {
253 LC_CFG retVal = LcConfigGetNull ();
254 OT_retObj_SET_CFG(retVal);
255 goto end;
256 error:
258 end:
260}
#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 …

◆ pylcconfig_LcConfigC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet pylcconfig_LcConfigC_HandleGet ( LcConfigC_ARGS )
static

Definition at line 184 of file LcConfigC_py.c.

#define OT_ERROR_LNG_RETURN

◆ pylcconfig_LcConfigC_HandleResolve()

static OT_ProcRet pylcconfig_LcConfigC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 165 of file LcConfigC_py.c.

165 {
168 MK_HDL netHdl = 0;
171 LC_CFG retVal = LcConfigHandleResolve (netHdl);
172 OT_retObj_SET_CFG(retVal);
173 goto end;
174 error:
176 end:
178}
#define HandleResolve_doc
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define LcConfigHandleResolve(...)
int32_t MK_HDL
#define OT_CHECK_NIH(val)

◆ pylcconfig_LcConfigC_Instances()

static OT_ProcRet pylcconfig_LcConfigC_Instances ( OtClass_ARGS )
static

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

Definition at line 226 of file LcConfigC_py.c.

226 {
230 LC_CFG retVal = LcConfigInstances ();
231 OT_retObj_SET_CFG(retVal);
232 goto end;
233 error:
235 end:
237}
#define Instances_doc
#define LcConfigInstances()

◆ pylcconfig_LcConfigC_Next()

static OT_ProcRet pylcconfig_LcConfigC_Next ( LcConfigC_ARGS )
static

Python: LcConfigC cfg.Next() C-API
get next instance from linked-list of LcConfigS type

Definition at line 196 of file LcConfigC_py.c.

196 {
200 LC_CFG retVal = LcConfigNext (hdl);
201 OT_retObj_SET_CFG(retVal);
202 goto end;
203 error:
205 end:
207}
#define OT_SETUP_hdl
#define Next_doc
static LC_CFG LcConfigNext(LC_CFG const cfg)
get next instance from linked-list of LcConfigS type

◆ pylcconfig_LcConfigC_Prev()

static OT_ProcRet pylcconfig_LcConfigC_Prev ( LcConfigC_ARGS )
static

Python: LcConfigC cfg.Prev() C-API
get previous instance from linked-list of LcConfigS type

Definition at line 210 of file LcConfigC_py.c.

210 {
214 LC_CFG retVal = LcConfigPrev (hdl);
215 OT_retObj_SET_CFG(retVal);
216 goto end;
217 error:
219 end:
221}
#define Prev_doc
static LC_CFG LcConfigPrev(LC_CFG const cfg)
get previous instance from linked-list of LcConfigS type