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_RB_API

Sq3StmtC - define the class … More...

+ Collaboration diagram for Sq3StmtC_Class_RB_API:

Functions

static OT_ProcRet rbsq3lite_Sq3StmtC_HandleResolve (OtClass_ARGS)
  Ruby: (static) Sq3StmtC Sq3StmtC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a Sq3StmtC from netHdl or nil if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet rbsq3lite_Sq3StmtC_HandleGet (Sq3StmtC_ARGS)
 
static OT_ProcRet rbsq3lite_Sq3StmtC_Next (Sq3StmtC_ARGS)
  Ruby: Sq3StmtC stmt.Next() C-API
get next instance from linked-list of Sq3StmtS type
 
static OT_ProcRet rbsq3lite_Sq3StmtC_Prev (Sq3StmtC_ARGS)
  Ruby: Sq3StmtC stmt.Prev() C-API
get previous instance from linked-list of Sq3StmtS type
 
static OT_ProcRet rbsq3lite_Sq3StmtC_Instances (OtClass_ARGS)
  Ruby: (static) Sq3StmtC Sq3StmtC.Instances() C-API
get head-instance from linked-list of Sq3StmtS type …
 
static OT_ProcRet rbsq3lite_Sq3StmtC_GetNull (OtClass_ARGS)
  Ruby: (static) Sq3StmtC Sq3StmtC.GetNull() C-API
Null-Slot - return a Sq3StmtC typed NULL instance …
 

Detailed Description

Sq3StmtC - define the class …

Function Documentation

◆ rbsq3lite_Sq3StmtC_GetNull()

static OT_ProcRet rbsq3lite_Sq3StmtC_GetNull ( OtClass_ARGS )
static

Ruby: (static) Sq3StmtC Sq3StmtC.GetNull() C-API
Null-Slot - return a Sq3StmtC typed NULL instance …

Definition at line 433 of file Sq3StmtC_rb.c.

433 {
437 SQ3_STMT retVal = Sq3StmtGetNull ();
438 OT_retObj_SET_STMT(retVal);
439 end: MK_UNUSED /* LONG JUMP on error */
441}
#define OT_SETUP_NOARG(d)
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_STMT(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
Definition Sq3StmtC_rb.c:96
#define MK_UNUSED
static SQ3_STMT Sq3StmtGetNull(void)
Null-Slot - return a Sq3StmtC typed NULL instance …
Struct to represent the data of the Sq3StmtC …

◆ rbsq3lite_Sq3StmtC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet rbsq3lite_Sq3StmtC_HandleGet ( Sq3StmtC_ARGS )
static

Definition at line 377 of file Sq3StmtC_rb.c.

#define OT_ERROR_LNG_RETURN

◆ rbsq3lite_Sq3StmtC_HandleResolve()

static OT_ProcRet rbsq3lite_Sq3StmtC_HandleResolve ( OtClass_ARGS )
static

Ruby: (static) Sq3StmtC Sq3StmtC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a Sq3StmtC from netHdl or nil if invalid…

Definition at line 361 of file Sq3StmtC_rb.c.

361 {
364 MK_HDL netHdl = 0;
367 SQ3_STMT retVal = Sq3StmtHandleResolve (netHdl);
368 OT_retObj_SET_STMT(retVal);
369 end: MK_UNUSED /* LONG JUMP on error */
371}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define Sq3StmtHandleResolve(...)
#define OT_CHECK_NIH(val)

◆ rbsq3lite_Sq3StmtC_Instances()

static OT_ProcRet rbsq3lite_Sq3StmtC_Instances ( OtClass_ARGS )
static

Ruby: (static) Sq3StmtC Sq3StmtC.Instances() C-API
get head-instance from linked-list of Sq3StmtS type …

Definition at line 413 of file Sq3StmtC_rb.c.

413 {
417 SQ3_STMT retVal = Sq3StmtInstances ();
418 OT_retObj_SET_STMT(retVal);
419 end: MK_UNUSED /* LONG JUMP on error */
421}
#define Instances_doc
#define Sq3StmtInstances()

◆ rbsq3lite_Sq3StmtC_Next()

static OT_ProcRet rbsq3lite_Sq3StmtC_Next ( Sq3StmtC_ARGS )
static

Ruby: Sq3StmtC stmt.Next() C-API
get next instance from linked-list of Sq3StmtS type

Definition at line 389 of file Sq3StmtC_rb.c.

389 {
393 SQ3_STMT retVal = Sq3StmtNext (hdl);
394 OT_retObj_SET_STMT(retVal);
395 end: MK_UNUSED /* LONG JUMP on error */
397}
#define OT_SETUP_hdl
Definition Sq3StmtC_rb.c:90
#define Next_doc
static SQ3_STMT Sq3StmtNext(SQ3_STMT const stmt)
get next instance from linked-list of Sq3StmtS type

◆ rbsq3lite_Sq3StmtC_Prev()

static OT_ProcRet rbsq3lite_Sq3StmtC_Prev ( Sq3StmtC_ARGS )
static

Ruby: Sq3StmtC stmt.Prev() C-API
get previous instance from linked-list of Sq3StmtS type

Definition at line 400 of file Sq3StmtC_rb.c.

400 {
404 SQ3_STMT retVal = Sq3StmtPrev (hdl);
405 OT_retObj_SET_STMT(retVal);
406 end: MK_UNUSED /* LONG JUMP on error */
408}
#define Prev_doc
static SQ3_STMT Sq3StmtPrev(SQ3_STMT const stmt)
get previous instance from linked-list of Sq3StmtS type