theConfig 10.0
Loading...
Searching...
No Matches
LcConfigC_TOR_CS_API

LcConfigC - various functions to create, initialize and destroy … More...

+ Collaboration diagram for LcConfigC_TOR_CS_API:

Functions

static IntPtr cslcconfig.LcConfigC.CTOR ()
  C#: [constructor,static] LcConfigC LcConfigC.Create() C-API
create a LcConfigC instance …
 
 cslcconfig.LcConfigC.LcConfigC ()
 CONSTRUCTOR.
 
static LcConfigC cslcconfig.LcConfigC.Create ()
  C#: [constructor,static] LcConfigC LcConfigC.Create() C-API
create a LcConfigC instance …
 

Detailed Description

LcConfigC - various functions to create, initialize and destroy …

Function Documentation

◆ Create()

static LcConfigC cslcconfig.LcConfigC.Create ( )
inlinestatic

C#: [constructor,static] LcConfigC LcConfigC.Create() C-API
create a LcConfigC instance …

Definition at line 437 of file LcConfigC.cs.

437 {
438 IntPtr __retVal__L = Lc.LcConfigCreate();
439 if (__retVal__L == IntPtr.Zero) {
440 throw new MkInitError("LcConfigC.Create");
441 }
442 return LcConfigC.LcConfigC_ObjCreate(__retVal__L);
443 }

◆ CTOR()

static IntPtr cslcconfig.LcConfigC.CTOR ( )
inlinestaticprotected

C#: [constructor,static] LcConfigC LcConfigC.Create() C-API
create a LcConfigC instance …

Definition at line 425 of file LcConfigC.cs.

425 {
426 IntPtr __retVal__L = Lc.LcConfigCreate();
427 if (__retVal__L == IntPtr.Zero) {
428 throw new MkInitError("LcConfigC.CTOR");
429 }
430 return (IntPtr)__retVal__L;
431 }

◆ LcConfigC()

cslcconfig.LcConfigC.LcConfigC ( )
inline

CONSTRUCTOR.

C#: [constructor,static] LcConfigC LcConfigC.Create() C-API
create a LcConfigC instance …

Definition at line 434 of file LcConfigC.cs.

434: this(CTOR()) {}
static IntPtr CTOR()
C#: [constructor,static] LcConfigC LcConfigC.Create() → C-API create a LcConfigC instance …
Definition LcConfigC.cs:425