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
Sq3BlobC_Class_TCL_API

Sq3BlobC - define the class … More...

+ Collaboration diagram for Sq3BlobC_Class_TCL_API:

Functions

static OT_ProcRet tclsq3lite_Sq3BlobC_HandleResolve (OtClass_ARGS)
  Tcl: (static) Sq3BlobC [Sq3BlobC HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a Sq3BlobC from netHdl or "MK_NULL" if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet tclsq3lite_Sq3BlobC_HandleGet (Sq3BlobC_ARGS)
 
static OT_ProcRet tclsq3lite_Sq3BlobC_Next (Sq3BlobC_ARGS)
  Tcl: Sq3BlobC [$blob Next] C-API
get next instance from linked-list of Sq3BlobS type
 
static OT_ProcRet tclsq3lite_Sq3BlobC_Prev (Sq3BlobC_ARGS)
  Tcl: Sq3BlobC [$blob Prev] C-API
get previous instance from linked-list of Sq3BlobS type
 
static OT_ProcRet tclsq3lite_Sq3BlobC_Instances (OtClass_ARGS)
  Tcl: (static) Sq3BlobC [Sq3BlobC Instances] C-API
get head-instance from linked-list of Sq3BlobS type …
 
static OT_ProcRet tclsq3lite_Sq3BlobC_GetNull (OtClass_ARGS)
  Tcl: (static) Sq3BlobC [Sq3BlobC GetNull] C-API
Null-Slot - return a Sq3BlobC typed NULL instance …
 

Detailed Description

Sq3BlobC - define the class …

Function Documentation

◆ tclsq3lite_Sq3BlobC_GetNull()

static OT_ProcRet tclsq3lite_Sq3BlobC_GetNull ( OtClass_ARGS )
static

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

Definition at line 250 of file Sq3BlobC_tcl.c.

250 {
254 SQ3_BLOB retVal = Sq3BlobGetNull ();
255 OT_retObj_SET_BLOB(retVal);
256 goto end;
257 error:
259 end:
261}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_BLOB(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
static SQ3_BLOB Sq3BlobGetNull(void)
Null-Slot - return a Sq3BlobC typed NULL instance …
Struct to represent the data of the Sq3BlobC …

◆ tclsq3lite_Sq3BlobC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet tclsq3lite_Sq3BlobC_HandleGet ( Sq3BlobC_ARGS )
static

Definition at line 185 of file Sq3BlobC_tcl.c.

#define OT_ERROR_LNG_RETURN

◆ tclsq3lite_Sq3BlobC_HandleResolve()

static OT_ProcRet tclsq3lite_Sq3BlobC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 166 of file Sq3BlobC_tcl.c.

166 {
169 MK_HDL netHdl = 0;
172 SQ3_BLOB retVal = Sq3BlobHandleResolve (netHdl);
173 OT_retObj_SET_BLOB(retVal);
174 goto end;
175 error:
177 end:
179}
#define OT_CHECK_NIH(val)
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define Sq3BlobHandleResolve(...)

◆ tclsq3lite_Sq3BlobC_Instances()

static OT_ProcRet tclsq3lite_Sq3BlobC_Instances ( OtClass_ARGS )
static

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

Definition at line 227 of file Sq3BlobC_tcl.c.

227 {
231 SQ3_BLOB retVal = Sq3BlobInstances ();
232 OT_retObj_SET_BLOB(retVal);
233 goto end;
234 error:
236 end:
238}
#define Instances_doc
#define Sq3BlobInstances()

◆ tclsq3lite_Sq3BlobC_Next()

static OT_ProcRet tclsq3lite_Sq3BlobC_Next ( Sq3BlobC_ARGS )
static

Tcl: Sq3BlobC [$blob Next] C-API
get next instance from linked-list of Sq3BlobS type

Definition at line 197 of file Sq3BlobC_tcl.c.

197 {
201 SQ3_BLOB retVal = Sq3BlobNext (hdl);
202 OT_retObj_SET_BLOB(retVal);
203 goto end;
204 error:
206 end:
208}
#define OT_SETUP_hdl
#define Next_doc
static SQ3_BLOB Sq3BlobNext(SQ3_BLOB const blob)
get next instance from linked-list of Sq3BlobS type

◆ tclsq3lite_Sq3BlobC_Prev()

static OT_ProcRet tclsq3lite_Sq3BlobC_Prev ( Sq3BlobC_ARGS )
static

Tcl: Sq3BlobC [$blob Prev] C-API
get previous instance from linked-list of Sq3BlobS type

Definition at line 211 of file Sq3BlobC_tcl.c.

211 {
215 SQ3_BLOB retVal = Sq3BlobPrev (hdl);
216 OT_retObj_SET_BLOB(retVal);
217 goto end;
218 error:
220 end:
222}
#define Prev_doc
static SQ3_BLOB Sq3BlobPrev(SQ3_BLOB const blob)
get previous instance from linked-list of Sq3BlobS type