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
Sq3LiteC_Class_RB_API

Sq3LiteC - define the class … More...

+ Collaboration diagram for Sq3LiteC_Class_RB_API:

Functions

static OT_ProcRet rbsq3lite_Sq3LiteC_HandleResolve (OtClass_ARGS)
  Ruby: (static) Sq3LiteC Sq3LiteC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a Sq3LiteC from netHdl or nil if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet rbsq3lite_Sq3LiteC_HandleGet (Sq3LiteC_ARGS)
 
static OT_ProcRet rbsq3lite_Sq3LiteC_Next (Sq3LiteC_ARGS)
  Ruby: Sq3LiteC lite.Next() C-API
get next instance from linked-list of Sq3LiteS type
 
static OT_ProcRet rbsq3lite_Sq3LiteC_Prev (Sq3LiteC_ARGS)
  Ruby: Sq3LiteC lite.Prev() C-API
get previous instance from linked-list of Sq3LiteS type
 
static OT_ProcRet rbsq3lite_Sq3LiteC_Instances (OtClass_ARGS)
  Ruby: (static) Sq3LiteC Sq3LiteC.Instances() C-API
get head-instance from linked-list of Sq3LiteS type …
 
static OT_ProcRet rbsq3lite_Sq3LiteC_GetNull (OtClass_ARGS)
  Ruby: (static) Sq3LiteC Sq3LiteC.GetNull() C-API
Null-Slot - return a Sq3LiteC typed NULL instance …
 

Detailed Description

Sq3LiteC - define the class …

Function Documentation

◆ rbsq3lite_Sq3LiteC_GetNull()

static OT_ProcRet rbsq3lite_Sq3LiteC_GetNull ( OtClass_ARGS )
static

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

Definition at line 261 of file Sq3LiteC_rb.c.

261 {
265 SQ3_LITE retVal = Sq3LiteGetNull ();
266 OT_retObj_SET_LITE(retVal);
267 end: MK_UNUSED /* LONG JUMP on error */
269}
#define OT_SETUP_NOARG(d)
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_LITE(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
Definition Sq3LiteC_rb.c:96
#define MK_UNUSED
static SQ3_LITE Sq3LiteGetNull(void)
Null-Slot - return a Sq3LiteC typed NULL instance …
Struct to represent the data of the Sq3LiteC …

◆ rbsq3lite_Sq3LiteC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet rbsq3lite_Sq3LiteC_HandleGet ( Sq3LiteC_ARGS )
static

Definition at line 205 of file Sq3LiteC_rb.c.

#define OT_ERROR_LNG_RETURN

◆ rbsq3lite_Sq3LiteC_HandleResolve()

static OT_ProcRet rbsq3lite_Sq3LiteC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 189 of file Sq3LiteC_rb.c.

189 {
192 MK_HDL netHdl = 0;
195 SQ3_LITE retVal = Sq3LiteHandleResolve (netHdl);
196 OT_retObj_SET_LITE(retVal);
197 end: MK_UNUSED /* LONG JUMP on error */
199}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define Sq3LiteHandleResolve(...)
#define OT_CHECK_NIH(val)

◆ rbsq3lite_Sq3LiteC_Instances()

static OT_ProcRet rbsq3lite_Sq3LiteC_Instances ( OtClass_ARGS )
static

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

Definition at line 241 of file Sq3LiteC_rb.c.

241 {
245 SQ3_LITE retVal = Sq3LiteInstances ();
246 OT_retObj_SET_LITE(retVal);
247 end: MK_UNUSED /* LONG JUMP on error */
249}
#define Instances_doc
#define Sq3LiteInstances()

◆ rbsq3lite_Sq3LiteC_Next()

static OT_ProcRet rbsq3lite_Sq3LiteC_Next ( Sq3LiteC_ARGS )
static

Ruby: Sq3LiteC lite.Next() C-API
get next instance from linked-list of Sq3LiteS type

Definition at line 217 of file Sq3LiteC_rb.c.

217 {
221 SQ3_LITE retVal = Sq3LiteNext (hdl);
222 OT_retObj_SET_LITE(retVal);
223 end: MK_UNUSED /* LONG JUMP on error */
225}
#define OT_SETUP_hdl
Definition Sq3LiteC_rb.c:90
#define Next_doc
static SQ3_LITE Sq3LiteNext(SQ3_LITE const lite)
get next instance from linked-list of Sq3LiteS type

◆ rbsq3lite_Sq3LiteC_Prev()

static OT_ProcRet rbsq3lite_Sq3LiteC_Prev ( Sq3LiteC_ARGS )
static

Ruby: Sq3LiteC lite.Prev() C-API
get previous instance from linked-list of Sq3LiteS type

Definition at line 228 of file Sq3LiteC_rb.c.

228 {
232 SQ3_LITE retVal = Sq3LitePrev (hdl);
233 OT_retObj_SET_LITE(retVal);
234 end: MK_UNUSED /* LONG JUMP on error */
236}
#define Prev_doc
static SQ3_LITE Sq3LitePrev(SQ3_LITE const lite)
get previous instance from linked-list of Sq3LiteS type