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_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 489 of file Sq3StmtC_tcl.c.

489 {
493 SQ3_STMT retVal = Sq3StmtGetNull ();
494 OT_retObj_SET_STMT(retVal);
495 goto end;
496 error:
498 end:
500}
#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 424 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 405 of file Sq3StmtC_tcl.c.

405 {
408 MK_HDL netHdl = 0;
411 SQ3_STMT retVal = Sq3StmtHandleResolve (netHdl);
412 OT_retObj_SET_STMT(retVal);
413 goto end;
414 error:
416 end:
418}
#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 466 of file Sq3StmtC_tcl.c.

466 {
470 SQ3_STMT retVal = Sq3StmtInstances ();
471 OT_retObj_SET_STMT(retVal);
472 goto end;
473 error:
475 end:
477}
#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 436 of file Sq3StmtC_tcl.c.

436 {
440 SQ3_STMT retVal = Sq3StmtNext (hdl);
441 OT_retObj_SET_STMT(retVal);
442 goto end;
443 error:
445 end:
447}
#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 450 of file Sq3StmtC_tcl.c.

450 {
454 SQ3_STMT retVal = Sq3StmtPrev (hdl);
455 OT_retObj_SET_STMT(retVal);
456 goto end;
457 error:
459 end:
461}
#define Prev_doc
static SQ3_STMT Sq3StmtPrev(SQ3_STMT const stmt)
get previous instance from linked-list of Sq3StmtS type