theKernel 10.0
Loading...
Searching...
No Matches
MkLogFileC_TOR_TCL_API

MkLogFileC - various functions to 'create and delete' a MkLogFileSMore...

+ Collaboration diagram for MkLogFileC_TOR_TCL_API:

Functions

static OT_ProcRet tclmkkernel_MkLogFileC_CTOR (CONSTR_ARGS)
  Tcl: (constructor,static) MkLogFileC [MkLogFileC CTOR fmtobj:MkObjectC file:string] C-API
open the log-file in append mode …
 
static OT_ProcRet tclmkkernel_MkLogFileC_Open (OtClass_ARGS)
  Tcl: (constructor,static) MkLogFileC [MkLogFileC Open fmtobj:MkObjectC file:string] C-API
open the log-file in append mode …
 

Detailed Description

MkLogFileC - various functions to 'create and delete' a MkLogFileS

Function Documentation

◆ tclmkkernel_MkLogFileC_CTOR()

static OT_ProcRet tclmkkernel_MkLogFileC_CTOR ( CONSTR_ARGS )
static

Tcl: (constructor,static) MkLogFileC [MkLogFileC CTOR fmtobj:MkObjectC file:string] C-API
open the log-file in append mode …

Definition at line 258 of file MkLogFileC_tcl.c.

258 {
261 MK_OBJN fmtobj = NULL;
263 MK_STRN file = 0;
265 MK_LFL lfh_out;
266 MkErrorC_Check(fmtobj,MkLogFileOpen (fmtobj, file, &lfh_out));
267 OT_CONSTRUCTOR_POST(lfh_out)
268 OT_retObj_CONSTR(lfh_out);
269 goto end;
270 error:
272 end:
274}
#define OT_retObj_SET_Error
#define OT_CONSTRUCTOR_POST(x)
#define OT_CHECK_REQUIRED(val)
#define OT_SETUP_CONSTRUCTOR_ARGS(...)
#define OT_retObj_RETURN
#define OT_CHECK_OPTIONAL(val)
#define OT_retObj_CONSTR(x)
#define MkErrorC_Check(mng, PROC)
#define OT_CHECK_STRN(val)
#define OT_SETUP_hdl_constr
#define CTOR_doc
#define MK_NULL_YES
flag, allow NULL
const MK_STRB * MK_STRN
constant string pointer data-type
#define MkLogFileOpen(...)
#define OT_CHECK_OBJN(val, nullB)
define a MkLogFileC object …
object header …

◆ tclmkkernel_MkLogFileC_Open()

static OT_ProcRet tclmkkernel_MkLogFileC_Open ( OtClass_ARGS )
static

Tcl: (constructor,static) MkLogFileC [MkLogFileC Open fmtobj:MkObjectC file:string] C-API
open the log-file in append mode …

Definition at line 277 of file MkLogFileC_tcl.c.

277 {
280 MK_OBJN fmtobj = NULL;
282 MK_STRN file = 0;
285 MK_LFL lfh_out;
286 MkErrorC_Check(fmtobj,MkLogFileOpen (fmtobj, file, &lfh_out));
287 OT_CONSTRUCTOR_POST(lfh_out)
288 OT_retObj_SET_LFL(lfh_out);
289 goto end;
290 error:
292 end:
294}
#define OT_SETUP_VARARGS(min, max, d)
#define OT_retObj_SET_LFL(nat)
#define OT_CHECK_NOARGS
#define OT_SETUP_hdl_static_constr
#define Open_doc