theKernel 10.0
Loading...
Searching...
No Matches
MkLogFileC_Class_TCL_API

MkLogFileC - define the class … More...

+ Collaboration diagram for MkLogFileC_Class_TCL_API:

Functions

static OT_ProcRet tclmkkernel_MkLogFileC_HandleResolve (OtClass_ARGS)
  Tcl: (static) MkLogFileC [MkLogFileC HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a MkLogFileC from netHdl or "MK_NULL" if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet tclmkkernel_MkLogFileC_HandleGet (MkLogFileC_ARGS)
 
static OT_ProcRet tclmkkernel_MkLogFileC_Next (MkLogFileC_ARGS)
  Tcl: MkLogFileC [$lfl Next] C-API
get next instance from linked-list of MkLogFileS type
 
static OT_ProcRet tclmkkernel_MkLogFileC_Prev (MkLogFileC_ARGS)
  Tcl: MkLogFileC [$lfl Prev] C-API
get previous instance from linked-list of MkLogFileS type
 
static OT_ProcRet tclmkkernel_MkLogFileC_Instances (OtClass_ARGS)
  Tcl: (static) MkLogFileC [MkLogFileC Instances] C-API
get head-instance from linked-list of MkLogFileS type …
 
static OT_ProcRet tclmkkernel_MkLogFileC_GetNull (OtClass_ARGS)
  Tcl: (static) MkLogFileC [MkLogFileC GetNull] C-API
Null-Slot - return a MkLogFileC typed NULL instance …
 

Detailed Description

MkLogFileC - define the class …

Function Documentation

◆ tclmkkernel_MkLogFileC_GetNull()

static OT_ProcRet tclmkkernel_MkLogFileC_GetNull ( OtClass_ARGS )
static

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

Definition at line 235 of file MkLogFileC_tcl.c.

235 {
239 MK_LFL retVal = MkLogFileGetNull ();
240 OT_retObj_SET_LFL(retVal);
241 goto end;
242 error:
244 end:
246}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_LFL(nat)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define GetNull_doc
#define OT_SETUP_hdl_static
static MK_LFL MkLogFileGetNull(void)
Null-Slot - return a MkLogFileC typed NULL instance …
define a MkLogFileC object …

◆ tclmkkernel_MkLogFileC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet tclmkkernel_MkLogFileC_HandleGet ( MkLogFileC_ARGS )
static

Definition at line 170 of file MkLogFileC_tcl.c.

#define OT_ERROR_LNG_RETURN

◆ tclmkkernel_MkLogFileC_HandleResolve()

static OT_ProcRet tclmkkernel_MkLogFileC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 151 of file MkLogFileC_tcl.c.

151 {
154 MK_HDL netHdl = 0;
157 MK_LFL retVal = MkLogFileHandleResolve (netHdl);
158 OT_retObj_SET_LFL(retVal);
159 goto end;
160 error:
162 end:
164}
#define OT_CHECK_NIH(val)
#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(...)

◆ tclmkkernel_MkLogFileC_Instances()

static OT_ProcRet tclmkkernel_MkLogFileC_Instances ( OtClass_ARGS )
static

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

Definition at line 212 of file MkLogFileC_tcl.c.

212 {
216 MK_LFL retVal = MkLogFileInstances ();
217 OT_retObj_SET_LFL(retVal);
218 goto end;
219 error:
221 end:
223}
#define Instances_doc
#define MkLogFileInstances()

◆ tclmkkernel_MkLogFileC_Next()

static OT_ProcRet tclmkkernel_MkLogFileC_Next ( MkLogFileC_ARGS )
static

Tcl: MkLogFileC [$lfl Next] C-API
get next instance from linked-list of MkLogFileS type

Definition at line 182 of file MkLogFileC_tcl.c.

182 {
186 MK_LFL retVal = MkLogFileNext (hdl);
187 OT_retObj_SET_LFL(retVal);
188 goto end;
189 error:
191 end:
193}
#define OT_SETUP_hdl
#define Next_doc
static MK_LFL MkLogFileNext(MK_LFL const lfl)
get next instance from linked-list of MkLogFileS type

◆ tclmkkernel_MkLogFileC_Prev()

static OT_ProcRet tclmkkernel_MkLogFileC_Prev ( MkLogFileC_ARGS )
static

Tcl: MkLogFileC [$lfl Prev] C-API
get previous instance from linked-list of MkLogFileS type

Definition at line 196 of file MkLogFileC_tcl.c.

196 {
200 MK_LFL retVal = MkLogFilePrev (hdl);
201 OT_retObj_SET_LFL(retVal);
202 goto end;
203 error:
205 end:
207}
#define Prev_doc
static MK_LFL MkLogFilePrev(MK_LFL const lfl)
get previous instance from linked-list of MkLogFileS type