theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3StmtC_Class_PY_API

Sq3StmtC - define the class … More...

+ Collaboration diagram for Sq3StmtC_Class_PY_API:

Functions

static OT_ProcRet pysq3lite_Sq3StmtC_HandleResolve (OtClass_ARGS)
  Python: [static] Sq3StmtC Sq3StmtC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a Sq3StmtC from netHdl or None if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet pysq3lite_Sq3StmtC_HandleGet (Sq3StmtC_ARGS)
 
static OT_ProcRet pysq3lite_Sq3StmtC_Next (Sq3StmtC_ARGS)
  Python: Sq3StmtC stmt.Next() C-API
get next instance from linked-list of Sq3StmtS type
 
static OT_ProcRet pysq3lite_Sq3StmtC_Prev (Sq3StmtC_ARGS)
  Python: Sq3StmtC stmt.Prev() C-API
get previous instance from linked-list of Sq3StmtS type
 
static OT_ProcRet pysq3lite_Sq3StmtC_Instances (OtClass_ARGS)
  Python: [static] Sq3StmtC Sq3StmtC.Instances() C-API
get head-instance from linked-list of Sq3StmtS type …
 
static OT_ProcRet pysq3lite_Sq3StmtC_GetNull (OtClass_ARGS)
  Python: [static] Sq3StmtC Sq3StmtC.GetNull() C-API
Null-Slot - return a Sq3StmtC typed NULL instance …
 

Detailed Description

Sq3StmtC - define the class …

Function Documentation

◆ pysq3lite_Sq3StmtC_GetNull()

static OT_ProcRet pysq3lite_Sq3StmtC_GetNull ( OtClass_ARGS )
static

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

Definition at line 472 of file Sq3StmtC_py.c.

472 {
476 SQ3_STMT retVal = Sq3StmtGetNull ();
477 OT_retObj_SET_STMT(retVal);
478 goto end;
479 error:
481 end:
483}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_STMT(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
Definition Sq3StmtC_py.c:28
static SQ3_STMT Sq3StmtGetNull(void)
Null-Slot - return a Sq3StmtC typed NULL instance …
Struct to represent the data of the Sq3StmtC …

◆ pysq3lite_Sq3StmtC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet pysq3lite_Sq3StmtC_HandleGet ( Sq3StmtC_ARGS )
static

Definition at line 407 of file Sq3StmtC_py.c.

#define OT_ERROR_LNG_RETURN

◆ pysq3lite_Sq3StmtC_HandleResolve()

static OT_ProcRet pysq3lite_Sq3StmtC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 388 of file Sq3StmtC_py.c.

388 {
391 MK_HDL netHdl = 0;
394 SQ3_STMT retVal = Sq3StmtHandleResolve (netHdl);
395 OT_retObj_SET_STMT(retVal);
396 goto end;
397 error:
399 end:
401}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define Sq3StmtHandleResolve(...)
#define OT_CHECK_NIH(val)

◆ pysq3lite_Sq3StmtC_Instances()

static OT_ProcRet pysq3lite_Sq3StmtC_Instances ( OtClass_ARGS )
static

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

Definition at line 449 of file Sq3StmtC_py.c.

449 {
453 SQ3_STMT retVal = Sq3StmtInstances ();
454 OT_retObj_SET_STMT(retVal);
455 goto end;
456 error:
458 end:
460}
#define Instances_doc
#define Sq3StmtInstances()

◆ pysq3lite_Sq3StmtC_Next()

static OT_ProcRet pysq3lite_Sq3StmtC_Next ( Sq3StmtC_ARGS )
static

Python: Sq3StmtC stmt.Next() C-API
get next instance from linked-list of Sq3StmtS type

Definition at line 419 of file Sq3StmtC_py.c.

419 {
423 SQ3_STMT retVal = Sq3StmtNext (hdl);
424 OT_retObj_SET_STMT(retVal);
425 goto end;
426 error:
428 end:
430}
#define OT_SETUP_hdl
Definition Sq3StmtC_py.c:23
#define Next_doc
static SQ3_STMT Sq3StmtNext(SQ3_STMT const stmt)
get next instance from linked-list of Sq3StmtS type

◆ pysq3lite_Sq3StmtC_Prev()

static OT_ProcRet pysq3lite_Sq3StmtC_Prev ( Sq3StmtC_ARGS )
static

Python: Sq3StmtC stmt.Prev() C-API
get previous instance from linked-list of Sq3StmtS type

Definition at line 433 of file Sq3StmtC_py.c.

433 {
437 SQ3_STMT retVal = Sq3StmtPrev (hdl);
438 OT_retObj_SET_STMT(retVal);
439 goto end;
440 error:
442 end:
444}
#define Prev_doc
static SQ3_STMT Sq3StmtPrev(SQ3_STMT const stmt)
get previous instance from linked-list of Sq3StmtS type