theKernel 10.0
Loading...
Searching...
No Matches
MkLogFileC_Class_CC_API

MkLogFileC - define the class … More...

+ Collaboration diagram for MkLogFileC_Class_CC_API:

Functions

static MkLogFileCccmkkernel::MkLogFileC::HandleResolve (MK_HDL netHdl)
  C++: [static] MkLogFileC* MkLogFileC::HandleResolve(MK_HDL netHdl) C-API
Handle-Resolve-Slot - return a MkLogFileC from netHdl or MK_NULL if invalid…
 
MkLogFileCccmkkernel::MkLogFileC::Next ()
  C++: MkLogFileC* lfl.Next() C-API
get next instance from linked-list of MkLogFileS type
 
MkLogFileCccmkkernel::MkLogFileC::Prev ()
  C++: MkLogFileC* lfl.Prev() C-API
get previous instance from linked-list of MkLogFileS type
 
static MkLogFileCccmkkernel::MkLogFileC::Instances ()
  C++: [static] MkLogFileC* MkLogFileC::Instances() C-API
get head-instance from linked-list of MkLogFileS type …
 
static MkLogFileCccmkkernel::MkLogFileC::GetNull ()
  C++: [static] MkLogFileC* MkLogFileC::GetNull() C-API
Null-Slot - return a MkLogFileC typed NULL instance …
 

Detailed Description

MkLogFileC - define the class …

Function Documentation

◆ GetNull()

MkLogFileC * ccmkkernel::MkLogFileC::GetNull ( )
inlinestatic

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

Definition at line 86 of file MkLogFileC_inline_cc.hh.

86 {
88 MK_LFL __retVal__L = MkLogFileGetNull();
89 return MkLogFileC::MkLogFileC_ObjNew(MK_RT_CALL __retVal__L);
90 }
static MkLogFileC * MkLogFileC_ObjNew(MK_RT_ARGS MK_LFL hdl)
return MkLogFileC from LibMsgqueObject
static MK_LFL MkLogFileGetNull(void)
Null-Slot - return a MkLogFileC typed NULL instance …
struct MkLogFileS * MK_LFL
class-shortcut for struct MkLogFileS *, all shortcut using the XX_YYY syntax (only for public API) …
#define MK_RT_CALL
#define MkRtSetup_NULL

◆ HandleResolve()

MkLogFileC * ccmkkernel::MkLogFileC::HandleResolve ( MK_HDL netHdl)
inlinestatic

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

Definition at line 34 of file MkLogFileC_inline_cc.hh.

34 {
36 MK_LFL __retVal__L = MkLogFileHandleResolve(netHdl);
37 return MkLogFileC::MkLogFileC_ObjNew(MK_RT_CALL __retVal__L);
38 }
#define MkLogFileHandleResolve(...)

◆ Instances()

MkLogFileC * ccmkkernel::MkLogFileC::Instances ( )
inlinestatic

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

Definition at line 70 of file MkLogFileC_inline_cc.hh.

70 {
72 MK_LFL __retVal__L = MkLogFileInstances();
73 return MkLogFileC::MkLogFileC_ObjNew(MK_RT_CALL __retVal__L);
74 }
#define MkLogFileInstances()

◆ Next()

MkLogFileC * ccmkkernel::MkLogFileC::Next ( )
inline

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

Definition at line 54 of file MkLogFileC_inline_cc.hh.

54 {
55 MK_UNUSED auto lfl = getLFL();
56 MK_LFL __retVal__L = MkLogFileNext(lfl);
57 return MkLogFileC::MkLogFileC_ObjNew(MK_RT_CALL __retVal__L);
58 }
#define MK_UNUSED
mark unnused variables and functions
MK_LFL getLFL() const
return the LibMsgqueObject from current MkLogFileC instance
static MK_LFL MkLogFileNext(MK_LFL const lfl)
get next instance from linked-list of MkLogFileS type

◆ Prev()

MkLogFileC * ccmkkernel::MkLogFileC::Prev ( )
inline

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

Definition at line 61 of file MkLogFileC_inline_cc.hh.

61 {
62 MK_UNUSED auto lfl = getLFL();
63 MK_LFL __retVal__L = MkLogFilePrev(lfl);
64 return MkLogFileC::MkLogFileC_ObjNew(MK_RT_CALL __retVal__L);
65 }
static MK_LFL MkLogFilePrev(MK_LFL const lfl)
get previous instance from linked-list of MkLogFileS type