theKernel 10.0
Loading...
Searching...
No Matches
MkErrorC_TOR_CS_API

MkErrorC - various functions to 'create' and 'delete' a MkErrorSMore...

+ Collaboration diagram for MkErrorC_TOR_CS_API:

Functions

MkErrorC csmkkernel.MkErrorC.Dup ()
  C#: [constructor] MkErrorC srce.Dup() C-API
Dup-Constructor - create a new MkErrorC instance as copy from an existing MkErrorC instance …
 
void csmkkernel.MkErrorC.Copy (MkErrorC srce)
  C#: dest.Copy(MkErrorC srce) C-API
Copy-Constructor - sync an existing MkErrorC instance with the values from an existing MkErrorC instance …
 

Detailed Description

MkErrorC - various functions to 'create' and 'delete' a MkErrorS

Function Documentation

◆ Copy()

void csmkkernel.MkErrorC.Copy ( MkErrorC srce)
inline

C#: dest.Copy(MkErrorC srce) C-API
Copy-Constructor - sync an existing MkErrorC instance with the values from an existing MkErrorC instance …

Definition at line 518 of file MkErrorC.cs.

518 {
519 IntPtr srce_hdl = MkErrorC.getOBJ("MkErrorC",srce);
520 Mk.MkErrorCopy(mkrt, hdl, srce_hdl);
521 }
csmkkernel.MkKernel Mk

◆ Dup()

MkErrorC csmkkernel.MkErrorC.Dup ( )
inline

C#: [constructor] MkErrorC srce.Dup() C-API
Dup-Constructor - create a new MkErrorC instance as copy from an existing MkErrorC instance …

Definition at line 507 of file MkErrorC.cs.

507 {
508 IntPtr __retVal__L = Mk.MkErrorDup(mkrt, hdl);
509 if (__retVal__L == IntPtr.Zero) {
510 throw new MkInitError("MkErrorC.Dup");
511 }
512 return MkErrorC.MkErrorC_ObjCreate(__retVal__L);
513 }