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
Sq3FileC_Class_TCL_API

Sq3FileC - define the class … More...

+ Collaboration diagram for Sq3FileC_Class_TCL_API:

Functions

static OT_ProcRet tclsq3lite_Sq3FileC_HandleResolve (OtClass_ARGS)
  Tcl: (static) Sq3FileC [Sq3FileC HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a Sq3FileC from netHdl or "MK_NULL" if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet tclsq3lite_Sq3FileC_HandleGet (Sq3FileC_ARGS)
 
static OT_ProcRet tclsq3lite_Sq3FileC_Next (Sq3FileC_ARGS)
  Tcl: Sq3FileC [$file Next] C-API
get next instance from linked-list of Sq3FileS type
 
static OT_ProcRet tclsq3lite_Sq3FileC_Prev (Sq3FileC_ARGS)
  Tcl: Sq3FileC [$file Prev] C-API
get previous instance from linked-list of Sq3FileS type
 
static OT_ProcRet tclsq3lite_Sq3FileC_Instances (OtClass_ARGS)
  Tcl: (static) Sq3FileC [Sq3FileC Instances] C-API
get head-instance from linked-list of Sq3FileS type …
 
static OT_ProcRet tclsq3lite_Sq3FileC_GetNull (OtClass_ARGS)
  Tcl: (static) Sq3FileC [Sq3FileC GetNull] C-API
Null-Slot - return a Sq3FileC typed NULL instance …
 

Detailed Description

Sq3FileC - define the class …

Function Documentation

◆ tclsq3lite_Sq3FileC_GetNull()

static OT_ProcRet tclsq3lite_Sq3FileC_GetNull ( OtClass_ARGS )
static

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

Definition at line 233 of file Sq3FileC_tcl.c.

233 {
237 SQ3_FILE retVal = Sq3FileGetNull ();
238 OT_retObj_SET_FILE(retVal);
239 goto end;
240 error:
242 end:
244}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_FILE(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
static SQ3_FILE Sq3FileGetNull(void)
Null-Slot - return a Sq3FileC typed NULL instance …
Struct to represent the data of the Sq3FileC …

◆ tclsq3lite_Sq3FileC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet tclsq3lite_Sq3FileC_HandleGet ( Sq3FileC_ARGS )
static

Definition at line 168 of file Sq3FileC_tcl.c.

#define OT_ERROR_LNG_RETURN

◆ tclsq3lite_Sq3FileC_HandleResolve()

static OT_ProcRet tclsq3lite_Sq3FileC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 149 of file Sq3FileC_tcl.c.

149 {
152 MK_HDL netHdl = 0;
155 SQ3_FILE retVal = Sq3FileHandleResolve (netHdl);
156 OT_retObj_SET_FILE(retVal);
157 goto end;
158 error:
160 end:
162}
#define OT_CHECK_NIH(val)
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define Sq3FileHandleResolve(...)

◆ tclsq3lite_Sq3FileC_Instances()

static OT_ProcRet tclsq3lite_Sq3FileC_Instances ( OtClass_ARGS )
static

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

Definition at line 210 of file Sq3FileC_tcl.c.

210 {
214 SQ3_FILE retVal = Sq3FileInstances ();
215 OT_retObj_SET_FILE(retVal);
216 goto end;
217 error:
219 end:
221}
#define Instances_doc
#define Sq3FileInstances()

◆ tclsq3lite_Sq3FileC_Next()

static OT_ProcRet tclsq3lite_Sq3FileC_Next ( Sq3FileC_ARGS )
static

Tcl: Sq3FileC [$file Next] C-API
get next instance from linked-list of Sq3FileS type

Definition at line 180 of file Sq3FileC_tcl.c.

180 {
184 SQ3_FILE retVal = Sq3FileNext (hdl);
185 OT_retObj_SET_FILE(retVal);
186 goto end;
187 error:
189 end:
191}
#define OT_SETUP_hdl
#define Next_doc
static SQ3_FILE Sq3FileNext(SQ3_FILE const file)
get next instance from linked-list of Sq3FileS type

◆ tclsq3lite_Sq3FileC_Prev()

static OT_ProcRet tclsq3lite_Sq3FileC_Prev ( Sq3FileC_ARGS )
static

Tcl: Sq3FileC [$file Prev] C-API
get previous instance from linked-list of Sq3FileS type

Definition at line 194 of file Sq3FileC_tcl.c.

194 {
198 SQ3_FILE retVal = Sq3FilePrev (hdl);
199 OT_retObj_SET_FILE(retVal);
200 goto end;
201 error:
203 end:
205}
#define Prev_doc
static SQ3_FILE Sq3FilePrev(SQ3_FILE const file)
get previous instance from linked-list of Sq3FileS type