theKernel 10.0
Loading...
Searching...
No Matches
MkLogFileC_Class_PY_API

MkLogFileC - define the class … More...

+ Collaboration diagram for MkLogFileC_Class_PY_API:

Functions

static OT_ProcRet pymkkernel_MkLogFileC_HandleResolve (OtClass_ARGS)
  Python: [static] MkLogFileC MkLogFileC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a MkLogFileC from netHdl or None if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet pymkkernel_MkLogFileC_HandleGet (MkLogFileC_ARGS)
 
static OT_ProcRet pymkkernel_MkLogFileC_Next (MkLogFileC_ARGS)
  Python: MkLogFileC lfl.Next() C-API
get next instance from linked-list of MkLogFileS type
 
static OT_ProcRet pymkkernel_MkLogFileC_Prev (MkLogFileC_ARGS)
  Python: MkLogFileC lfl.Prev() C-API
get previous instance from linked-list of MkLogFileS type
 
static OT_ProcRet pymkkernel_MkLogFileC_Instances (OtClass_ARGS)
  Python: [static] MkLogFileC MkLogFileC.Instances() C-API
get head-instance from linked-list of MkLogFileS type …
 
static OT_ProcRet pymkkernel_MkLogFileC_GetNull (OtClass_ARGS)
  Python: [static] MkLogFileC MkLogFileC.GetNull() C-API
Null-Slot - return a MkLogFileC typed NULL instance …
 

Detailed Description

MkLogFileC - define the class …

Function Documentation

◆ pymkkernel_MkLogFileC_GetNull()

static OT_ProcRet pymkkernel_MkLogFileC_GetNull ( OtClass_ARGS )
static

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

Definition at line 223 of file MkLogFileC_py.c.

223 {
227 MK_LFL retVal = MkLogFileGetNull ();
228 OT_retObj_SET_LFL(retVal);
229 goto end;
230 error:
232 end:
234}
#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 …

◆ pymkkernel_MkLogFileC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet pymkkernel_MkLogFileC_HandleGet ( MkLogFileC_ARGS )
static

Definition at line 158 of file MkLogFileC_py.c.

#define OT_ERROR_LNG_RETURN

◆ pymkkernel_MkLogFileC_HandleResolve()

static OT_ProcRet pymkkernel_MkLogFileC_HandleResolve ( OtClass_ARGS )
static

Python: [static] MkLogFileC MkLogFileC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a MkLogFileC from netHdl or None if invalid…

Definition at line 139 of file MkLogFileC_py.c.

139 {
142 MK_HDL netHdl = 0;
145 MK_LFL retVal = MkLogFileHandleResolve (netHdl);
146 OT_retObj_SET_LFL(retVal);
147 goto end;
148 error:
150 end:
152}
#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)

◆ pymkkernel_MkLogFileC_Instances()

static OT_ProcRet pymkkernel_MkLogFileC_Instances ( OtClass_ARGS )
static

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

Definition at line 200 of file MkLogFileC_py.c.

200 {
204 MK_LFL retVal = MkLogFileInstances ();
205 OT_retObj_SET_LFL(retVal);
206 goto end;
207 error:
209 end:
211}
#define Instances_doc
#define MkLogFileInstances()

◆ pymkkernel_MkLogFileC_Next()

static OT_ProcRet pymkkernel_MkLogFileC_Next ( MkLogFileC_ARGS )
static

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

Definition at line 170 of file MkLogFileC_py.c.

170 {
174 MK_LFL retVal = MkLogFileNext (hdl);
175 OT_retObj_SET_LFL(retVal);
176 goto end;
177 error:
179 end:
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

◆ pymkkernel_MkLogFileC_Prev()

static OT_ProcRet pymkkernel_MkLogFileC_Prev ( MkLogFileC_ARGS )
static

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

Definition at line 184 of file MkLogFileC_py.c.

184 {
188 MK_LFL retVal = MkLogFilePrev (hdl);
189 OT_retObj_SET_LFL(retVal);
190 goto end;
191 error:
193 end:
195}
#define Prev_doc
static MK_LFL MkLogFilePrev(MK_LFL const lfl)
get previous instance from linked-list of MkLogFileS type