theSq3Lite 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard - theLib - theATL
c - tcl - atl - cs - py - rb - jv - cc
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 475 of file Sq3StmtC_py.c.

475 {
479 SQ3_STMT retVal = Sq3StmtGetNull ();
480 OT_retObj_SET_STMT(retVal);
481 goto end;
482 error:
484 end:
486}
#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:31
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 410 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 391 of file Sq3StmtC_py.c.

391 {
394 MK_HDL netHdl = 0;
397 SQ3_STMT retVal = Sq3StmtHandleResolve (netHdl);
398 OT_retObj_SET_STMT(retVal);
399 goto end;
400 error:
402 end:
404}
#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 452 of file Sq3StmtC_py.c.

452 {
456 SQ3_STMT retVal = Sq3StmtInstances ();
457 OT_retObj_SET_STMT(retVal);
458 goto end;
459 error:
461 end:
463}
#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 422 of file Sq3StmtC_py.c.

422 {
426 SQ3_STMT retVal = Sq3StmtNext (hdl);
427 OT_retObj_SET_STMT(retVal);
428 goto end;
429 error:
431 end:
433}
#define OT_SETUP_hdl
Definition Sq3StmtC_py.c:26
#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 436 of file Sq3StmtC_py.c.

436 {
440 SQ3_STMT retVal = Sq3StmtPrev (hdl);
441 OT_retObj_SET_STMT(retVal);
442 goto end;
443 error:
445 end:
447}
#define Prev_doc
static SQ3_STMT Sq3StmtPrev(SQ3_STMT const stmt)
get previous instance from linked-list of Sq3StmtS type