theConfig 10.0
Loading...
Searching...
No Matches
LcConfigC_Lookup_ATL_API

LcConfigC - various functions to lookup config-dataMore...

+ Collaboration diagram for LcConfigC_Lookup_ATL_API:

Functions

static OT_ProcRet atllcconfig_LcConfigC_Lookup (LcConfigC_ARGS)
  Atl: LcSettingC [LcConfigC::Lookup $config path:string] C-API
This function locates the setting in the configuration config specified by the path path
 
static OT_ProcRet atllcconfig_LcConfigC_LookupBool (LcConfigC_ARGS)
  Atl: bool [LcConfigC::LookupBool $config path:string] C-API
These functions look up the value of the setting in the configuration config specified by the path path
 
static OT_ProcRet atllcconfig_LcConfigC_LookupFloat (LcConfigC_ARGS)
  Atl: double [LcConfigC::LookupFloat $config path:string] C-API
These functions look up the value of the setting in the configuration config specified by the path path
 
static OT_ProcRet atllcconfig_LcConfigC_LookupInt (LcConfigC_ARGS)
  Atl: int32 [LcConfigC::LookupInt $config path:string] C-API
These functions look up the value of the setting in the configuration config specified by the path path
 
static OT_ProcRet atllcconfig_LcConfigC_LookupInt64 (LcConfigC_ARGS)
  Atl: int64 [LcConfigC::LookupInt64 $config path:string] C-API
These functions look up the value of the setting in the configuration config specified by the path path
 
static OT_ProcRet atllcconfig_LcConfigC_LookupString (LcConfigC_ARGS)
  Atl: string [LcConfigC::LookupString $config path:string] C-API
These functions look up the value of the setting in the configuration config specified by the path path
 

Detailed Description

LcConfigC - various functions to lookup config-data

Function Documentation

◆ atllcconfig_LcConfigC_Lookup()

static OT_ProcRet atllcconfig_LcConfigC_Lookup ( LcConfigC_ARGS )
static

Atl: LcSettingC [LcConfigC::Lookup $config path:string] C-API
This function locates the setting in the configuration config specified by the path path

Definition at line 384 of file LcConfigC_atl.c.

384 {
387 MK_STRN path = 0;
390 LC_CFS retVal = LcConfigLookup (hdl, path);
391 OT_retObj_SET_CFS(retVal);
392 goto end;
393 error:
395 end:
397}
#define Lookup_doc
#define OT_SETUP_hdl
#define OT_retObj_SET_CFS(nat)
#define OT_SETUP_ONEARG(d)
#define OT_retObj_SET_Error
#define OT_CHECK_REQUIRED(val)
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_CHECK_STRN(val)
static LC_CFS LcConfigLookup(LC_CFGN config, MK_STRN path)
This function locates the setting in the configuration config specified by the path path …
const MK_STRB * MK_STRN
Struct to represent the data from the LcSettingC …

◆ atllcconfig_LcConfigC_LookupBool()

static OT_ProcRet atllcconfig_LcConfigC_LookupBool ( LcConfigC_ARGS )
static

Atl: bool [LcConfigC::LookupBool $config path:string] C-API
These functions look up the value of the setting in the configuration config specified by the path path

Definition at line 402 of file LcConfigC_atl.c.

402 {
405 MK_STRN path = 0;
408 MK_BOOL value_out;
409 MkErrorC_Check(hdl,LcConfigLookupBool (hdl, path, &value_out));
410 OT_retObj_SET_BOL(value_out);
411 goto end;
412 error:
414 end:
416}
#define LookupBool_doc
#define OT_retObj_SET_BOL(nat)
#define MkErrorC_Check(mng, PROC)
static enum MkErrorE LcConfigLookupBool(LC_CFGN config, MK_STRN path, MK_BOOL *value_out)
These functions look up the value of the setting in the configuration config specified by the path pa...
bool MK_BOOL

◆ atllcconfig_LcConfigC_LookupFloat()

static OT_ProcRet atllcconfig_LcConfigC_LookupFloat ( LcConfigC_ARGS )
static

Atl: double [LcConfigC::LookupFloat $config path:string] C-API
These functions look up the value of the setting in the configuration config specified by the path path

Definition at line 419 of file LcConfigC_atl.c.

419 {
422 MK_STRN path = 0;
425 MK_DBL value_out;
426 MkErrorC_Check(hdl,LcConfigLookupFloat (hdl, path, &value_out));
427 OT_retObj_SET_DBL(value_out);
428 goto end;
429 error:
431 end:
433}
#define LookupFloat_doc
#define OT_retObj_SET_DBL(nat)
static enum MkErrorE LcConfigLookupFloat(LC_CFGN config, MK_STRN path, MK_DBL *value_out)
These functions look up the value of the setting in the configuration config specified by the path pa...
double MK_DBL

◆ atllcconfig_LcConfigC_LookupInt()

static OT_ProcRet atllcconfig_LcConfigC_LookupInt ( LcConfigC_ARGS )
static

Atl: int32 [LcConfigC::LookupInt $config path:string] C-API
These functions look up the value of the setting in the configuration config specified by the path path

Definition at line 436 of file LcConfigC_atl.c.

436 {
439 MK_STRN path = 0;
442 MK_I32 value_out;
443 MkErrorC_Check(hdl,LcConfigLookupInt (hdl, path, &value_out));
444 OT_retObj_SET_I32(value_out);
445 goto end;
446 error:
448 end:
450}
#define LookupInt_doc
#define OT_retObj_SET_I32(nat)
static enum MkErrorE LcConfigLookupInt(LC_CFGN config, MK_STRN path, MK_I32 *value_out)
These functions look up the value of the setting in the configuration config specified by the path pa...
signed int MK_I32

◆ atllcconfig_LcConfigC_LookupInt64()

static OT_ProcRet atllcconfig_LcConfigC_LookupInt64 ( LcConfigC_ARGS )
static

Atl: int64 [LcConfigC::LookupInt64 $config path:string] C-API
These functions look up the value of the setting in the configuration config specified by the path path

Definition at line 453 of file LcConfigC_atl.c.

453 {
456 MK_STRN path = 0;
459 MK_I64 value_out;
460 MkErrorC_Check(hdl,LcConfigLookupInt64 (hdl, path, &value_out));
461 OT_retObj_SET_I64(value_out);
462 goto end;
463 error:
465 end:
467}
#define LookupInt64_doc
#define OT_retObj_SET_I64(nat)
static enum MkErrorE LcConfigLookupInt64(LC_CFGN config, MK_STRN path, MK_I64 *value_out)
These functions look up the value of the setting in the configuration config specified by the path pa...
signed long long MK_I64

◆ atllcconfig_LcConfigC_LookupString()

static OT_ProcRet atllcconfig_LcConfigC_LookupString ( LcConfigC_ARGS )
static

Atl: string [LcConfigC::LookupString $config path:string] C-API
These functions look up the value of the setting in the configuration config specified by the path path

Definition at line 470 of file LcConfigC_atl.c.

470 {
473 MK_STRN path = 0;
476 MK_STRN value_out;
477 MkErrorC_Check(hdl,LcConfigLookupString (hdl, path, &value_out));
478 OT_retObj_SET_STR(value_out);
479 goto end;
480 error:
482 end:
484}
#define LookupString_doc
#define OT_retObj_SET_STR(nat)
static enum MkErrorE LcConfigLookupString(LC_CFGN config, MK_STRN path, MK_STRN *value_out)
These functions look up the value of the setting in the configuration config specified by the path pa...