theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3FileC_Class_RB_API

Sq3FileC - define the class … More...

+ Collaboration diagram for Sq3FileC_Class_RB_API:

Functions

static OT_ProcRet rbsq3lite_Sq3FileC_HandleResolve (OtClass_ARGS)
  Ruby: (static) Sq3FileC Sq3FileC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a Sq3FileC from netHdl or nil if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet rbsq3lite_Sq3FileC_HandleGet (Sq3FileC_ARGS)
 
static OT_ProcRet rbsq3lite_Sq3FileC_Next (Sq3FileC_ARGS)
  Ruby: Sq3FileC file.Next() C-API
get next instance from linked-list of Sq3FileS type
 
static OT_ProcRet rbsq3lite_Sq3FileC_Prev (Sq3FileC_ARGS)
  Ruby: Sq3FileC file.Prev() C-API
get previous instance from linked-list of Sq3FileS type
 
static OT_ProcRet rbsq3lite_Sq3FileC_Instances (OtClass_ARGS)
  Ruby: (static) Sq3FileC Sq3FileC.Instances() C-API
get head-instance from linked-list of Sq3FileS type …
 
static OT_ProcRet rbsq3lite_Sq3FileC_GetNull (OtClass_ARGS)
  Ruby: (static) Sq3FileC Sq3FileC.GetNull() C-API
Null-Slot - return a Sq3FileC typed NULL instance …
 

Detailed Description

Sq3FileC - define the class …

Function Documentation

◆ rbsq3lite_Sq3FileC_GetNull()

static OT_ProcRet rbsq3lite_Sq3FileC_GetNull ( OtClass_ARGS )
static

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

Definition at line 210 of file Sq3FileC_rb.c.

210 {
214 SQ3_FILE retVal = Sq3FileGetNull ();
215 OT_retObj_SET_FILE(retVal);
216 end: MK_UNUSED /* LONG JUMP on error */
218}
#define OT_SETUP_NOARG(d)
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_FILE(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
Definition Sq3FileC_rb.c:93
#define MK_UNUSED
static SQ3_FILE Sq3FileGetNull(void)
Null-Slot - return a Sq3FileC typed NULL instance …
Struct to represent the data of the Sq3FileC …

◆ rbsq3lite_Sq3FileC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet rbsq3lite_Sq3FileC_HandleGet ( Sq3FileC_ARGS )
static

Definition at line 154 of file Sq3FileC_rb.c.

#define OT_ERROR_LNG_RETURN

◆ rbsq3lite_Sq3FileC_HandleResolve()

static OT_ProcRet rbsq3lite_Sq3FileC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 138 of file Sq3FileC_rb.c.

138 {
141 MK_HDL netHdl = 0;
144 SQ3_FILE retVal = Sq3FileHandleResolve (netHdl);
145 OT_retObj_SET_FILE(retVal);
146 end: MK_UNUSED /* LONG JUMP on error */
148}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define Sq3FileHandleResolve(...)
#define OT_CHECK_NIH(val)

◆ rbsq3lite_Sq3FileC_Instances()

static OT_ProcRet rbsq3lite_Sq3FileC_Instances ( OtClass_ARGS )
static

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

Definition at line 190 of file Sq3FileC_rb.c.

190 {
194 SQ3_FILE retVal = Sq3FileInstances ();
195 OT_retObj_SET_FILE(retVal);
196 end: MK_UNUSED /* LONG JUMP on error */
198}
#define Instances_doc
#define Sq3FileInstances()

◆ rbsq3lite_Sq3FileC_Next()

static OT_ProcRet rbsq3lite_Sq3FileC_Next ( Sq3FileC_ARGS )
static

Ruby: Sq3FileC file.Next() C-API
get next instance from linked-list of Sq3FileS type

Definition at line 166 of file Sq3FileC_rb.c.

166 {
170 SQ3_FILE retVal = Sq3FileNext (hdl);
171 OT_retObj_SET_FILE(retVal);
172 end: MK_UNUSED /* LONG JUMP on error */
174}
#define OT_SETUP_hdl
Definition Sq3FileC_rb.c:87
#define Next_doc
static SQ3_FILE Sq3FileNext(SQ3_FILE const file)
get next instance from linked-list of Sq3FileS type

◆ rbsq3lite_Sq3FileC_Prev()

static OT_ProcRet rbsq3lite_Sq3FileC_Prev ( Sq3FileC_ARGS )
static

Ruby: Sq3FileC file.Prev() C-API
get previous instance from linked-list of Sq3FileS type

Definition at line 177 of file Sq3FileC_rb.c.

177 {
181 SQ3_FILE retVal = Sq3FilePrev (hdl);
182 OT_retObj_SET_FILE(retVal);
183 end: MK_UNUSED /* LONG JUMP on error */
185}
#define Prev_doc
static SQ3_FILE Sq3FilePrev(SQ3_FILE const file)
get previous instance from linked-list of Sq3FileS type