theKernel 10.0
Loading...
Searching...
No Matches
MkLogFileC_Class_RB_API

MkLogFileC - define the class … More...

+ Collaboration diagram for MkLogFileC_Class_RB_API:

Functions

static OT_ProcRet rbmkkernel_MkLogFileC_HandleResolve (OtClass_ARGS)
  Ruby: (static) MkLogFileC MkLogFileC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a MkLogFileC from netHdl or nil if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet rbmkkernel_MkLogFileC_HandleGet (MkLogFileC_ARGS)
 
static OT_ProcRet rbmkkernel_MkLogFileC_Next (MkLogFileC_ARGS)
  Ruby: MkLogFileC lfl.Next() C-API
get next instance from linked-list of MkLogFileS type
 
static OT_ProcRet rbmkkernel_MkLogFileC_Prev (MkLogFileC_ARGS)
  Ruby: MkLogFileC lfl.Prev() C-API
get previous instance from linked-list of MkLogFileS type
 
static OT_ProcRet rbmkkernel_MkLogFileC_Instances (OtClass_ARGS)
  Ruby: (static) MkLogFileC MkLogFileC.Instances() C-API
get head-instance from linked-list of MkLogFileS type …
 
static OT_ProcRet rbmkkernel_MkLogFileC_GetNull (OtClass_ARGS)
  Ruby: (static) MkLogFileC MkLogFileC.GetNull() C-API
Null-Slot - return a MkLogFileC typed NULL instance …
 

Detailed Description

MkLogFileC - define the class …

Method definition

Function Documentation

◆ rbmkkernel_MkLogFileC_GetNull()

static OT_ProcRet rbmkkernel_MkLogFileC_GetNull ( OtClass_ARGS )
static

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

Definition at line 217 of file MkLogFileC_rb.c.

217 {
221 MK_LFL retVal = MkLogFileGetNull ();
222 OT_retObj_SET_LFL(retVal);
223 end: MK_UNUSED /* LONG JUMP on error */
225}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_LFL(nat)
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define GetNull_doc
#define OT_SETUP_hdl_static
#define MK_UNUSED
mark unnused variables and functions
static MK_LFL MkLogFileGetNull(void)
Null-Slot - return a MkLogFileC typed NULL instance …
define a MkLogFileC object …

◆ rbmkkernel_MkLogFileC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet rbmkkernel_MkLogFileC_HandleGet ( MkLogFileC_ARGS )
static

Definition at line 161 of file MkLogFileC_rb.c.

#define OT_ERROR_LNG_RETURN

◆ rbmkkernel_MkLogFileC_HandleResolve()

static OT_ProcRet rbmkkernel_MkLogFileC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 145 of file MkLogFileC_rb.c.

145 {
148 MK_HDL netHdl = 0;
151 MK_LFL retVal = MkLogFileHandleResolve (netHdl);
152 OT_retObj_SET_LFL(retVal);
153 end: MK_UNUSED /* LONG JUMP on error */
155}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
4 byte int handle data-type
#define MkLogFileHandleResolve(...)
#define OT_CHECK_NIH(val)

◆ rbmkkernel_MkLogFileC_Instances()

static OT_ProcRet rbmkkernel_MkLogFileC_Instances ( OtClass_ARGS )
static

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

Definition at line 197 of file MkLogFileC_rb.c.

197 {
201 MK_LFL retVal = MkLogFileInstances ();
202 OT_retObj_SET_LFL(retVal);
203 end: MK_UNUSED /* LONG JUMP on error */
205}
#define Instances_doc
#define MkLogFileInstances()

◆ rbmkkernel_MkLogFileC_Next()

static OT_ProcRet rbmkkernel_MkLogFileC_Next ( MkLogFileC_ARGS )
static

Ruby: MkLogFileC lfl.Next() C-API
get next instance from linked-list of MkLogFileS type

Definition at line 173 of file MkLogFileC_rb.c.

173 {
177 MK_LFL retVal = MkLogFileNext (hdl);
178 OT_retObj_SET_LFL(retVal);
179 end: MK_UNUSED /* LONG JUMP on error */
181}
#define OT_SETUP_hdl
#define Next_doc
static MK_LFL MkLogFileNext(MK_LFL const lfl)
get next instance from linked-list of MkLogFileS type

◆ rbmkkernel_MkLogFileC_Prev()

static OT_ProcRet rbmkkernel_MkLogFileC_Prev ( MkLogFileC_ARGS )
static

Ruby: MkLogFileC lfl.Prev() C-API
get previous instance from linked-list of MkLogFileS type

Definition at line 184 of file MkLogFileC_rb.c.

184 {
188 MK_LFL retVal = MkLogFilePrev (hdl);
189 OT_retObj_SET_LFL(retVal);
190 end: MK_UNUSED /* LONG JUMP on error */
192}
#define Prev_doc
static MK_LFL MkLogFilePrev(MK_LFL const lfl)
get previous instance from linked-list of MkLogFileS type