theKernel 10.0
Loading...
Searching...
No Matches
MkLogFileC_Write_TCL_API

MkLogFileC - various functions to 'write' into a MkLogFileSMore...

+ Collaboration diagram for MkLogFileC_Write_TCL_API:

Functions

static OT_ProcRet tclmkkernel_MkLogFileC_WriteC (MkLogFileC_ARGS)
  Tcl: $lfl WriteC text:string C-API
write to log-file
 
static OT_ProcRet tclmkkernel_MkLogFileC_GetFile (MkLogFileC_ARGS)
  Tcl: string [$lfl GetFile] C-API
get the log-file
 

Detailed Description

MkLogFileC - various functions to 'write' into a MkLogFileS

Function Documentation

◆ tclmkkernel_MkLogFileC_GetFile()

static OT_ProcRet tclmkkernel_MkLogFileC_GetFile ( MkLogFileC_ARGS )
static

Tcl: string [$lfl GetFile] C-API
get the log-file

Definition at line 324 of file MkLogFileC_tcl.c.

324 {
328 MK_STRN file_out;
329 MkErrorC_Check(hdl,MkLogFileGetFile (hdl, &file_out));
330 OT_retObj_SET_STR(file_out);
331 goto end;
332 error:
334 end:
336}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_retObj_SET_STR(nat)
#define OT_CHECK_NOARGS
#define MkErrorC_Check(mng, PROC)
#define OT_SETUP_hdl
#define GetFile_doc
const MK_STRB * MK_STRN
constant string pointer data-type
#define MkLogFileGetFile(...)

◆ tclmkkernel_MkLogFileC_WriteC()

static OT_ProcRet tclmkkernel_MkLogFileC_WriteC ( MkLogFileC_ARGS )
static

Tcl: $lfl WriteC text:string C-API
write to log-file

Definition at line 306 of file MkLogFileC_tcl.c.

306 {
309 MK_STRN text = 0;
312 MkErrorC_Check(hdl,MkLogFileWriteC (hdl, text));
314 goto end;
315 error:
317 end:
319}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define OT_retObj_SET_None
#define OT_CHECK_STRN(val)
#define WriteC_doc
#define OT_SETUP_hdl__null_allow
#define MkLogFileWriteC(...)