theKernel 10.0
Loading...
Searching...
No Matches
MkErrorC_TOR_PY_API

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

+ Collaboration diagram for MkErrorC_TOR_PY_API:

Functions

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

◆ pymkkernel_MkErrorC_Copy()

static OT_ProcRet pymkkernel_MkErrorC_Copy ( MkErrorC_ARGS )
static

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

Definition at line 901 of file MkErrorC_py.c.

901 {
904 MK_ERRN srce = 0;
907 MkErrorCopy (hdl, srce);
909 goto end;
910 error:
912 end:
914}
#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
Definition MkErrorC_py.c:23
#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 …

◆ pymkkernel_MkErrorC_Dup()

static OT_ProcRet pymkkernel_MkErrorC_Dup ( MkErrorC_ARGS )
static

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

Definition at line 881 of file MkErrorC_py.c.

881 {
885 MK_ERR retVal = MkErrorDup (hdl);
886 if (retVal == NULL) {
887 OT_ERROR_CONSTRUCTOR(MkErrorC);
888 goto error;
889 }
890 OT_retObj_SET_ERR(retVal);
891 goto end;
892 error:
894 end:
896}
#define OT_SETUP_NOARG(d)
#define OT_ERROR_CONSTRUCTOR(class)
#define OT_retObj_SET_ERR(nat)
#define Dup_doc
#define MkErrorDup(...)