theConfig 10.0
Loading...
Searching...
No Matches
LcConfigC_Class_CS_API

LcConfigC - define the class … More...

Functions

new static LcConfigC cslcconfig.LcConfigC.HandleResolve (Int32 netHdl)
  C#: [static] LcConfigC LcConfigC.HandleResolve(Int32 netHdl) C-API
Handle-Resolve-Slot - return a LcConfigC from netHdl or null if invalid…
 
new LcConfigC cslcconfig.LcConfigC.Next ()
  C#: LcConfigC cfg.Next() C-API
get next instance from linked-list of LcConfigS type
 
new LcConfigC cslcconfig.LcConfigC.Prev ()
  C#: LcConfigC cfg.Prev() C-API
get previous instance from linked-list of LcConfigS type
 
new static LcConfigC cslcconfig.LcConfigC.Instances ()
  C#: [static] LcConfigC LcConfigC.Instances() C-API
get head-instance from linked-list of LcConfigS type …
 
new static LcConfigC cslcconfig.LcConfigC.GetNull ()
  C#: [static] LcConfigC LcConfigC.GetNull() C-API
Null-Slot - return a LcConfigC typed NULL instance …
 

Detailed Description

LcConfigC - define the class …

Function Documentation

◆ GetNull()

new static LcConfigC cslcconfig.LcConfigC.GetNull ( )
inlinestatic

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

Definition at line 139 of file LcConfigC.cs.

139 {
140 IntPtr __retVal__L = Lc.LcConfigGetNull();
141 return LcConfigC.LcConfigC_ObjNew(__retVal__L);
142 }

◆ HandleResolve()

new static LcConfigC cslcconfig.LcConfigC.HandleResolve ( Int32 netHdl)
inlinestatic

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

Definition at line 85 of file LcConfigC.cs.

85 {
86 IntPtr __retVal__L = Lc.LcConfigHandleResolve(IntPtr.Zero, netHdl);
87 return LcConfigC.LcConfigC_ObjNew(__retVal__L);
88 }

◆ Instances()

new static LcConfigC cslcconfig.LcConfigC.Instances ( )
inlinestatic

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

Definition at line 121 of file LcConfigC.cs.

121 {
122 IntPtr __retVal__L = Lc.LcConfigInstances(IntPtr.Zero);
123 return LcConfigC.LcConfigC_ObjNew(__retVal__L);
124 }

◆ Next()

new LcConfigC cslcconfig.LcConfigC.Next ( )
inline

C#: LcConfigC cfg.Next() C-API
get next instance from linked-list of LcConfigS type

Definition at line 107 of file LcConfigC.cs.

107 {
108 IntPtr __retVal__L = Lc.LcConfigNext(hdl);
109 return LcConfigC.LcConfigC_ObjNew(__retVal__L);
110 }

◆ Prev()

new LcConfigC cslcconfig.LcConfigC.Prev ( )
inline

C#: LcConfigC cfg.Prev() C-API
get previous instance from linked-list of LcConfigS type

Definition at line 113 of file LcConfigC.cs.

113 {
114 IntPtr __retVal__L = Lc.LcConfigPrev(hdl);
115 return LcConfigC.LcConfigC_ObjNew(__retVal__L);
116 }