theKernel 10.0
Loading...
Searching...
No Matches
MkErrorC_TOR_ATL_API

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

+ Collaboration diagram for MkErrorC_TOR_ATL_API:

Functions

static OT_ProcRet atlmkkernel_MkErrorC_Dup (MkErrorC_ARGS)
  Atl: (constructor) MkErrorC [MkErrorC::Dup $srce] C-API
Dup-Constructor - create a new MkErrorC instance as copy from an existing MkErrorC instance …
 
static OT_ProcRet atlmkkernel_MkErrorC_Copy (MkErrorC_ARGS)
  Atl: MkErrorC::Copy $dest srce:MkErrorC 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

◆ atlmkkernel_MkErrorC_Copy()

static OT_ProcRet atlmkkernel_MkErrorC_Copy ( MkErrorC_ARGS )
static

Atl: MkErrorC::Copy $dest srce:MkErrorC C-API
Copy-Constructor - sync an existing MkErrorC instance with the values from an existing MkErrorC instance …

Definition at line 854 of file MkErrorC_atl.c.

854 {
857 MK_ERRN srce = 0;
860 MkErrorCopy (hdl, srce);
862 goto end;
863 error:
865 end:
867}
#define OT_SETUP_ONEARG(d)
#define OT_retObj_SET_Error
#define OT_CHECK_REQUIRED(val)
#define OT_retObj_SET_None
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_SETUP_hdl
#define Copy_doc
#define MkErrorCopy(...)
#define MK_NULL_NO
flag, not allow NULL
#define OT_CHECK_ERRN(val, nullB)
The data-type to store and handle the error-condition …

◆ atlmkkernel_MkErrorC_Dup()

static OT_ProcRet atlmkkernel_MkErrorC_Dup ( MkErrorC_ARGS )
static

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

Definition at line 834 of file MkErrorC_atl.c.

834 {
838 MK_ERR retVal = MkErrorDup (hdl);
839 if (retVal == NULL) {
840 OT_ERROR_CONSTRUCTOR(MkErrorC);
841 goto error;
842 }
843 OT_retObj_SET_ERR(retVal);
844 goto end;
845 error:
847 end:
849}
#define OT_SETUP_NOARG(d)
#define OT_ERROR_CONSTRUCTOR(class)
#define OT_retObj_SET_ERR(nat)
#define Dup_doc
#define MkErrorDup(...)