theConfig 10.0
Loading...
Searching...
No Matches
LcConfigC_TOR_PY_API

LcConfigC - various functions to create, initialize and destroy … More...

+ Collaboration diagram for LcConfigC_TOR_PY_API:

Functions

static OT_ProcRet pylcconfig_LcConfigC_Create (OtClass_ARGS)
  Python: [constructor,static] LcConfigC LcConfigC.Create() C-API
create a LcConfigC instance …
 
static OT_ProcRet pylcconfig_LcConfigC_new (CONSTR_ARGS)
  Python: [constructor,static] LcConfigC LcConfigC.new() C-API
create a LcConfigC instance …
 

Detailed Description

LcConfigC - various functions to create, initialize and destroy …

Function Documentation

◆ pylcconfig_LcConfigC_Create()

static OT_ProcRet pylcconfig_LcConfigC_Create ( OtClass_ARGS )
static

Python: [constructor,static] LcConfigC LcConfigC.Create() C-API
create a LcConfigC instance …

Definition at line 770 of file LcConfigC_py.c.

770 {
774 LC_CFG retVal = LcConfigCreate (NULL, NULL);
775 if (retVal == NULL) {
776 OT_ERROR_CONSTRUCTOR(LcConfigC);
777 goto error;
778 }
779 OT_CONSTRUCTOR_POST(retVal)
780 OT_retObj_SET_CFG(retVal);
781 goto end;
782 error:
784 end:
786}
#define OT_SETUP_hdl_static_constr
#define Create_doc
#define OT_retObj_SET_CFG(nat)
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_CONSTRUCTOR_POST(x)
#define OT_ERROR_CONSTRUCTOR(class)
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
static LC_CFG LcConfigCreate(MK_TYP type, config_t *nat)
create a LcConfigC instance …
Struct to represent the data from the LcConfigC …

◆ pylcconfig_LcConfigC_new()

static OT_ProcRet pylcconfig_LcConfigC_new ( CONSTR_ARGS )
static

Python: [constructor,static] LcConfigC LcConfigC.new() C-API
create a LcConfigC instance …

Definition at line 789 of file LcConfigC_py.c.

789 {
792 LC_CFG retVal = LcConfigCreate (NULL, NULL);
793 if (retVal == NULL) {
794 OT_ERROR_CONSTRUCTOR(LcConfigC);
795 goto error;
796 }
797 OT_CONSTRUCTOR_POST(retVal)
798 OT_retObj_CONSTR(retVal);
799 goto end;
800 error:
802 end:
804}
#define OT_retObj_CONSTR(mng)
#define OT_SETUP_hdl_constr
#define new_doc
#define OT_SETUP_CONSTRUCTOR_ARGS(...)