theKernel 10.0
Loading...
Searching...
No Matches
MkErrorC_System_ATL_API

MkErrorC - various functions to raise a 'System' messagen on MkErrorSMore...

+ Collaboration diagram for MkErrorC_System_ATL_API:

Functions

static OT_ProcRet atlmkkernel_MkErrorC_DEFAULT (OtClass_ARGS)
  Atl: (static) MkErrorC [MkErrorC::DEFAULT] C-API
default-system-error - default-error
 
static OT_ProcRet atlmkkernel_MkErrorC_FORMAT (OtClass_ARGS)
  Atl: (static) MkErrorC [MkErrorC::FORMAT ?fmtobj:MkObjectC=NULL?] C-API
system-error-format - format and return the default-error
 
static OT_ProcRet atlmkkernel_MkErrorC_IGNORE (OtClass_ARGS)
  Atl: (static) MkErrorC [MkErrorC::IGNORE] C-API
ignore-system-error - ignore the next error …
 
static OT_ProcRet atlmkkernel_MkErrorC_PRINT (OtClass_ARGS)
  Atl: (static) MkErrorC [MkErrorC::PRINT] C-API
ignore-system-error - print the next error into MkLogFileC
 

Detailed Description

MkErrorC - various functions to raise a 'System' messagen on MkErrorS

Function Documentation

◆ atlmkkernel_MkErrorC_DEFAULT()

static OT_ProcRet atlmkkernel_MkErrorC_DEFAULT ( OtClass_ARGS )
static

Atl: (static) MkErrorC [MkErrorC::DEFAULT] C-API
default-system-error - default-error

Definition at line 767 of file MkErrorC_atl.c.

767 {
771 MK_ERR retVal = MkErrorDEFAULT ();
772 OT_retObj_SET_ERR(retVal);
773 goto end;
774 error:
776 end:
778}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_retObj_SET_ERR(nat)
#define OT_CHECK_NOARGS
#define DEFAULT_doc
#define OT_SETUP_hdl_static
#define MkErrorDEFAULT()
The data-type to store and handle the error-condition …

◆ atlmkkernel_MkErrorC_FORMAT()

static OT_ProcRet atlmkkernel_MkErrorC_FORMAT ( OtClass_ARGS )
static

Atl: (static) MkErrorC [MkErrorC::FORMAT ?fmtobj:MkObjectC=NULL?] C-API
system-error-format - format and return the default-error

Definition at line 781 of file MkErrorC_atl.c.

781 {
784 MK_OBJN fmtobj = NULL;
787 MK_ERR retVal = MkErrorFORMAT (fmtobj);
788 OT_retObj_SET_ERR(retVal);
789 goto end;
790 error:
792 end:
794}
#define OT_SETUP_VARARGS(min, max, d)
#define OT_CHECK_OPTIONAL(val)
#define FORMAT_doc
MK_ERR MkErrorFORMAT(MK_OBJN fmtobj)
system-error-format - format and return the default-error …
#define MK_NULL_YES
flag, allow NULL
#define OT_CHECK_OBJN(val, nullB)
object header …

◆ atlmkkernel_MkErrorC_IGNORE()

static OT_ProcRet atlmkkernel_MkErrorC_IGNORE ( OtClass_ARGS )
static

Atl: (static) MkErrorC [MkErrorC::IGNORE] C-API
ignore-system-error - ignore the next error …

Definition at line 797 of file MkErrorC_atl.c.

797 {
801 MK_ERR retVal = MkErrorIGNORE ();
802 OT_retObj_SET_ERR(retVal);
803 goto end;
804 error:
806 end:
808}
#define IGNORE_doc
#define MkErrorIGNORE()

◆ atlmkkernel_MkErrorC_PRINT()

static OT_ProcRet atlmkkernel_MkErrorC_PRINT ( OtClass_ARGS )
static

Atl: (static) MkErrorC [MkErrorC::PRINT] C-API
ignore-system-error - print the next error into MkLogFileC

Definition at line 811 of file MkErrorC_atl.c.

811 {
815 MK_ERR retVal = MkErrorPRINT ();
816 OT_retObj_SET_ERR(retVal);
817 goto end;
818 error:
820 end:
822}
#define PRINT_doc
#define MkErrorPRINT()