theKernel 10.0
Loading...
Searching...
No Matches
MkLogFileC_Class_CS_API

MkLogFileC - define the class … More...

+ Collaboration diagram for MkLogFileC_Class_CS_API:

Functions

new static MkLogFileC csmkkernel.MkLogFileC.HandleResolve (Int32 netHdl)
  C#: [static] MkLogFileC MkLogFileC.HandleResolve(Int32 netHdl) C-API
Handle-Resolve-Slot - return a MkLogFileC from netHdl or null if invalid…
 
new MkLogFileC csmkkernel.MkLogFileC.Next ()
  C#: MkLogFileC lfl.Next() C-API
get next instance from linked-list of MkLogFileS type
 
new MkLogFileC csmkkernel.MkLogFileC.Prev ()
  C#: MkLogFileC lfl.Prev() C-API
get previous instance from linked-list of MkLogFileS type
 
new static MkLogFileC csmkkernel.MkLogFileC.Instances ()
  C#: [static] MkLogFileC MkLogFileC.Instances() C-API
get head-instance from linked-list of MkLogFileS type …
 
new static MkLogFileC csmkkernel.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()

new static MkLogFileC csmkkernel.MkLogFileC.GetNull ( )
inlinestatic

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

Definition at line 135 of file MkLogFileC.cs.

135 {
136 IntPtr __retVal__L = Mk.MkLogFileGetNull();
137 return MkLogFileC.MkLogFileC_ObjNew(__retVal__L);
138 }
csmkkernel.MkKernel Mk

◆ HandleResolve()

new static MkLogFileC csmkkernel.MkLogFileC.HandleResolve ( Int32 netHdl)
inlinestatic

C#: [static] MkLogFileC MkLogFileC.HandleResolve(Int32 netHdl) C-API
Handle-Resolve-Slot - return a MkLogFileC from netHdl or null if invalid…

Definition at line 81 of file MkLogFileC.cs.

81 {
82 IntPtr __retVal__L = Mk.MkLogFileHandleResolve(IntPtr.Zero, netHdl);
83 return MkLogFileC.MkLogFileC_ObjNew(__retVal__L);
84 }

◆ Instances()

new static MkLogFileC csmkkernel.MkLogFileC.Instances ( )
inlinestatic

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

Definition at line 117 of file MkLogFileC.cs.

117 {
118 IntPtr __retVal__L = Mk.MkLogFileInstances(IntPtr.Zero);
119 return MkLogFileC.MkLogFileC_ObjNew(__retVal__L);
120 }

◆ Next()

new MkLogFileC csmkkernel.MkLogFileC.Next ( )
inline

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

Definition at line 103 of file MkLogFileC.cs.

103 {
104 IntPtr __retVal__L = Mk.MkLogFileNext(hdl);
105 return MkLogFileC.MkLogFileC_ObjNew(__retVal__L);
106 }

◆ Prev()

new MkLogFileC csmkkernel.MkLogFileC.Prev ( )
inline

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

Definition at line 109 of file MkLogFileC.cs.

109 {
110 IntPtr __retVal__L = Mk.MkLogFilePrev(hdl);
111 return MkLogFileC.MkLogFileC_ObjNew(__retVal__L);
112 }