theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3LiteC_Class_TCL_API

Sq3LiteC - define the class … More...

+ Collaboration diagram for Sq3LiteC_Class_TCL_API:

Functions

static OT_ProcRet tclsq3lite_Sq3LiteC_HandleResolve (OtClass_ARGS)
  Tcl: (static) Sq3LiteC [Sq3LiteC HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a Sq3LiteC from netHdl or "MK_NULL" if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet tclsq3lite_Sq3LiteC_HandleGet (Sq3LiteC_ARGS)
 
static OT_ProcRet tclsq3lite_Sq3LiteC_Next (Sq3LiteC_ARGS)
  Tcl: Sq3LiteC [$lite Next] C-API
get next instance from linked-list of Sq3LiteS type
 
static OT_ProcRet tclsq3lite_Sq3LiteC_Prev (Sq3LiteC_ARGS)
  Tcl: Sq3LiteC [$lite Prev] C-API
get previous instance from linked-list of Sq3LiteS type
 
static OT_ProcRet tclsq3lite_Sq3LiteC_Instances (OtClass_ARGS)
  Tcl: (static) Sq3LiteC [Sq3LiteC Instances] C-API
get head-instance from linked-list of Sq3LiteS type …
 
static OT_ProcRet tclsq3lite_Sq3LiteC_GetNull (OtClass_ARGS)
  Tcl: (static) Sq3LiteC [Sq3LiteC GetNull] C-API
Null-Slot - return a Sq3LiteC typed NULL instance …
 

Detailed Description

Sq3LiteC - define the class …

Function Documentation

◆ tclsq3lite_Sq3LiteC_GetNull()

static OT_ProcRet tclsq3lite_Sq3LiteC_GetNull ( OtClass_ARGS )
static

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

Definition at line 278 of file Sq3LiteC_tcl.c.

278 {
282 SQ3_LITE retVal = Sq3LiteGetNull ();
283 OT_retObj_SET_LITE(retVal);
284 goto end;
285 error:
287 end:
289}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_LITE(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
static SQ3_LITE Sq3LiteGetNull(void)
Null-Slot - return a Sq3LiteC typed NULL instance …
Struct to represent the data of the Sq3LiteC …

◆ tclsq3lite_Sq3LiteC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet tclsq3lite_Sq3LiteC_HandleGet ( Sq3LiteC_ARGS )
static

Definition at line 213 of file Sq3LiteC_tcl.c.

#define OT_ERROR_LNG_RETURN

◆ tclsq3lite_Sq3LiteC_HandleResolve()

static OT_ProcRet tclsq3lite_Sq3LiteC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 194 of file Sq3LiteC_tcl.c.

194 {
197 MK_HDL netHdl = 0;
200 SQ3_LITE retVal = Sq3LiteHandleResolve (netHdl);
201 OT_retObj_SET_LITE(retVal);
202 goto end;
203 error:
205 end:
207}
#define OT_CHECK_NIH(val)
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define Sq3LiteHandleResolve(...)

◆ tclsq3lite_Sq3LiteC_Instances()

static OT_ProcRet tclsq3lite_Sq3LiteC_Instances ( OtClass_ARGS )
static

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

Definition at line 255 of file Sq3LiteC_tcl.c.

255 {
259 SQ3_LITE retVal = Sq3LiteInstances ();
260 OT_retObj_SET_LITE(retVal);
261 goto end;
262 error:
264 end:
266}
#define Instances_doc
#define Sq3LiteInstances()

◆ tclsq3lite_Sq3LiteC_Next()

static OT_ProcRet tclsq3lite_Sq3LiteC_Next ( Sq3LiteC_ARGS )
static

Tcl: Sq3LiteC [$lite Next] C-API
get next instance from linked-list of Sq3LiteS type

Definition at line 225 of file Sq3LiteC_tcl.c.

225 {
229 SQ3_LITE retVal = Sq3LiteNext (hdl);
230 OT_retObj_SET_LITE(retVal);
231 goto end;
232 error:
234 end:
236}
#define OT_SETUP_hdl
#define Next_doc
static SQ3_LITE Sq3LiteNext(SQ3_LITE const lite)
get next instance from linked-list of Sq3LiteS type

◆ tclsq3lite_Sq3LiteC_Prev()

static OT_ProcRet tclsq3lite_Sq3LiteC_Prev ( Sq3LiteC_ARGS )
static

Tcl: Sq3LiteC [$lite Prev] C-API
get previous instance from linked-list of Sq3LiteS type

Definition at line 239 of file Sq3LiteC_tcl.c.

239 {
243 SQ3_LITE retVal = Sq3LitePrev (hdl);
244 OT_retObj_SET_LITE(retVal);
245 goto end;
246 error:
248 end:
250}
#define Prev_doc
static SQ3_LITE Sq3LitePrev(SQ3_LITE const lite)
get previous instance from linked-list of Sq3LiteS type