theKernel 10.0
Loading...
Searching...
No Matches
MkLogFileC_TOR_PY_API

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

+ Collaboration diagram for MkLogFileC_TOR_PY_API:

Functions

static OT_ProcRet pymkkernel_MkLogFileC_Open (OtClass_ARGS)
  Python: [constructor,static] MkLogFileC MkLogFileC.Open(fmtobj:MkObjectC, file:string) C-API
open the log-file in append mode …
 
static OT_ProcRet pymkkernel_MkLogFileC_new (CONSTR_ARGS)
  Python: [constructor,static] MkLogFileC MkLogFileC.new(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

◆ pymkkernel_MkLogFileC_new()

static OT_ProcRet pymkkernel_MkLogFileC_new ( CONSTR_ARGS )
static

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

Definition at line 266 of file MkLogFileC_py.c.

266 {
269 MK_OBJN fmtobj = NULL;
271 MK_STRN file = 0;
273 MK_LFL lfh_out;
274 MkErrorC_Check(fmtobj,MkLogFileOpen (fmtobj, file, &lfh_out));
275 OT_CONSTRUCTOR_POST(lfh_out)
276 OT_retObj_CONSTR(lfh_out);
277 goto end;
278 error:
280 end:
282}
#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 MkErrorC_Check(mng, PROC)
#define OT_CHECK_STRN(val)
#define OT_retObj_CONSTR(mng)
#define OT_SETUP_hdl_constr
#define new_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 …

◆ pymkkernel_MkLogFileC_Open()

static OT_ProcRet pymkkernel_MkLogFileC_Open ( OtClass_ARGS )
static

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

Definition at line 246 of file MkLogFileC_py.c.

246 {
249 MK_OBJN fmtobj = NULL;
251 MK_STRN file = 0;
254 MK_LFL lfh_out;
255 MkErrorC_Check(fmtobj,MkLogFileOpen (fmtobj, file, &lfh_out));
256 OT_CONSTRUCTOR_POST(lfh_out)
257 OT_retObj_SET_LFL(lfh_out);
258 goto end;
259 error:
261 end:
263}
#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