theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3StmtC_Class_TCL_API

Sq3StmtC - define the class … More...

+ Collaboration diagram for Sq3StmtC_Class_TCL_API:

Functions

static OT_ProcRet tclsq3lite_Sq3StmtC_HandleResolve (OtClass_ARGS)
  Tcl: (static) Sq3StmtC [Sq3StmtC HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a Sq3StmtC from netHdl or "MK_NULL" if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet tclsq3lite_Sq3StmtC_HandleGet (Sq3StmtC_ARGS)
 
static OT_ProcRet tclsq3lite_Sq3StmtC_Next (Sq3StmtC_ARGS)
  Tcl: Sq3StmtC [$stmt Next] C-API
get next instance from linked-list of Sq3StmtS type
 
static OT_ProcRet tclsq3lite_Sq3StmtC_Prev (Sq3StmtC_ARGS)
  Tcl: Sq3StmtC [$stmt Prev] C-API
get previous instance from linked-list of Sq3StmtS type
 
static OT_ProcRet tclsq3lite_Sq3StmtC_Instances (OtClass_ARGS)
  Tcl: (static) Sq3StmtC [Sq3StmtC Instances] C-API
get head-instance from linked-list of Sq3StmtS type …
 
static OT_ProcRet tclsq3lite_Sq3StmtC_GetNull (OtClass_ARGS)
  Tcl: (static) Sq3StmtC [Sq3StmtC GetNull] C-API
Null-Slot - return a Sq3StmtC typed NULL instance …
 

Detailed Description

Sq3StmtC - define the class …

Function Documentation

◆ tclsq3lite_Sq3StmtC_GetNull()

static OT_ProcRet tclsq3lite_Sq3StmtC_GetNull ( OtClass_ARGS )
static

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

Definition at line 486 of file Sq3StmtC_tcl.c.

486 {
490 SQ3_STMT retVal = Sq3StmtGetNull ();
491 OT_retObj_SET_STMT(retVal);
492 goto end;
493 error:
495 end:
497}
#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
static SQ3_STMT Sq3StmtGetNull(void)
Null-Slot - return a Sq3StmtC typed NULL instance …
Struct to represent the data of the Sq3StmtC …

◆ tclsq3lite_Sq3StmtC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet tclsq3lite_Sq3StmtC_HandleGet ( Sq3StmtC_ARGS )
static

Definition at line 421 of file Sq3StmtC_tcl.c.

#define OT_ERROR_LNG_RETURN

◆ tclsq3lite_Sq3StmtC_HandleResolve()

static OT_ProcRet tclsq3lite_Sq3StmtC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 402 of file Sq3StmtC_tcl.c.

402 {
405 MK_HDL netHdl = 0;
408 SQ3_STMT retVal = Sq3StmtHandleResolve (netHdl);
409 OT_retObj_SET_STMT(retVal);
410 goto end;
411 error:
413 end:
415}
#define OT_CHECK_NIH(val)
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define Sq3StmtHandleResolve(...)

◆ tclsq3lite_Sq3StmtC_Instances()

static OT_ProcRet tclsq3lite_Sq3StmtC_Instances ( OtClass_ARGS )
static

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

Definition at line 463 of file Sq3StmtC_tcl.c.

463 {
467 SQ3_STMT retVal = Sq3StmtInstances ();
468 OT_retObj_SET_STMT(retVal);
469 goto end;
470 error:
472 end:
474}
#define Instances_doc
#define Sq3StmtInstances()

◆ tclsq3lite_Sq3StmtC_Next()

static OT_ProcRet tclsq3lite_Sq3StmtC_Next ( Sq3StmtC_ARGS )
static

Tcl: Sq3StmtC [$stmt Next] C-API
get next instance from linked-list of Sq3StmtS type

Definition at line 433 of file Sq3StmtC_tcl.c.

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

◆ tclsq3lite_Sq3StmtC_Prev()

static OT_ProcRet tclsq3lite_Sq3StmtC_Prev ( Sq3StmtC_ARGS )
static

Tcl: Sq3StmtC [$stmt Prev] C-API
get previous instance from linked-list of Sq3StmtS type

Definition at line 447 of file Sq3StmtC_tcl.c.

447 {
451 SQ3_STMT retVal = Sq3StmtPrev (hdl);
452 OT_retObj_SET_STMT(retVal);
453 goto end;
454 error:
456 end:
458}
#define Prev_doc
static SQ3_STMT Sq3StmtPrev(SQ3_STMT const stmt)
get previous instance from linked-list of Sq3StmtS type