theConfig 10.0
Loading...
Searching...
No Matches
LcSettingC_Set_ATL_API

LcSettingC - various functions to set date into a settingMore...

+ Collaboration diagram for LcSettingC_Set_ATL_API:

Functions

static OT_ProcRet atllcconfig_LcSettingC_SetBoolElem (LcSettingC_ARGS)
  Atl: LcSettingC [LcSettingC::SetBoolElem $setting idx:int32 value:int32] C-API
These functions set the value at the specified index index in the setting setting to value
 
static OT_ProcRet atllcconfig_LcSettingC_SetFloatElem (LcSettingC_ARGS)
  Atl: LcSettingC [LcSettingC::SetFloatElem $setting idx:int32 value:double] C-API
These functions set the value at the specified index index in the setting setting to value
 
static OT_ProcRet atllcconfig_LcSettingC_SetInt64Elem (LcSettingC_ARGS)
  Atl: LcSettingC [LcSettingC::SetInt64Elem $setting idx:int32 value:int64] C-API
These functions set the value at the specified index index in the setting setting to value
 
static OT_ProcRet atllcconfig_LcSettingC_SetIntElem (LcSettingC_ARGS)
  Atl: LcSettingC [LcSettingC::SetIntElem $setting idx:int32 value:int32] C-API
These functions set the value at the specified index index in the setting setting to value
 
static OT_ProcRet atllcconfig_LcSettingC_SetStringElem (LcSettingC_ARGS)
  Atl: LcSettingC [LcSettingC::SetStringElem $setting idx:int32 value:string] C-API
These functions set the value at the specified index index in the setting setting to value
 
static OT_ProcRet atllcconfig_LcSettingC_SetBool (LcSettingC_ARGS)
  Atl: LcSettingC::SetBool $setting value:bool C-API
These functions set the value of the given setting to value
 
static OT_ProcRet atllcconfig_LcSettingC_SetFloat (LcSettingC_ARGS)
  Atl: LcSettingC::SetFloat $setting value:double C-API
These functions set the value of the given setting to value
 
static OT_ProcRet atllcconfig_LcSettingC_SetFormat (LcSettingC_ARGS)
  Atl: LcSettingC::SetFormat $setting format:LcConfigFormatE C-API
These functions get and set the external format for the setting setting
 
static OT_ProcRet atllcconfig_LcSettingC_SetInt (LcSettingC_ARGS)
  Atl: LcSettingC::SetInt $setting value:int32 C-API
These functions set the value of the given setting to value
 
static OT_ProcRet atllcconfig_LcSettingC_SetInt64 (LcSettingC_ARGS)
  Atl: LcSettingC::SetInt64 $setting value:int64 C-API
These functions set the value of the given setting to value
 
static OT_ProcRet atllcconfig_LcSettingC_SetString (LcSettingC_ARGS)
  Atl: LcSettingC::SetString $setting value:string C-API
These functions set the value of the given setting to value
 

Detailed Description

LcSettingC - various functions to set date into a setting

Function Documentation

◆ atllcconfig_LcSettingC_SetBool()

static OT_ProcRet atllcconfig_LcSettingC_SetBool ( LcSettingC_ARGS )
static

Atl: LcSettingC::SetBool $setting value:bool C-API
These functions set the value of the given setting to value

Definition at line 1013 of file LcSettingC_atl.c.

1013 {
1016 MK_BOOL value = 0;
1019 MkErrorC_Check(hdl,LcSettingSetBool (hdl, value));
1021 goto end;
1022 error:
1024 end:
1026}
#define OT_SETUP_hdl
#define SetBool_doc
#define OT_CHECK_bool(val)
#define OT_SETUP_ONEARG(d)
#define OT_retObj_SET_Error
#define OT_CHECK_REQUIRED(val)
#define OT_retObj_SET_None
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define MkErrorC_Check(mng, PROC)
static enum MkErrorE LcSettingSetBool(LC_CFS setting, MK_BOOL value)
These functions set the value of the given setting to value …
bool MK_BOOL

◆ atllcconfig_LcSettingC_SetBoolElem()

static OT_ProcRet atllcconfig_LcSettingC_SetBoolElem ( LcSettingC_ARGS )
static

Atl: LcSettingC [LcSettingC::SetBoolElem $setting idx:int32 value:int32] C-API
These functions set the value at the specified index index in the setting setting to value

Definition at line 901 of file LcSettingC_atl.c.

901 {
904 MK_I32 idx = 0;
906 MK_I32 value = 0;
909 LC_CFS retVal = LcSettingSetBoolElem (hdl, idx, value);
910 if (retVal == NULL) {
911 OT_ERROR_SOFT_CONSTRUCTOR(LcSettingC);
912 goto error;
913 }
914 OT_retObj_SET_CFS(retVal);
915 goto end;
916 error:
918 end:
920}
#define SetBoolElem_doc
#define OT_retObj_SET_CFS(nat)
#define OT_SETUP_VARARGS(min, max, d)
#define OT_CHECK_NI4(val)
#define OT_ERROR_SOFT_CONSTRUCTOR(class)
static LC_CFS LcSettingSetBoolElem(LC_CFS setting, MK_I32 idx, MK_I32 value)
These functions set the value at the specified index index in the setting setting to value …
signed int MK_I32
Struct to represent the data from the LcSettingC …

◆ atllcconfig_LcSettingC_SetFloat()

static OT_ProcRet atllcconfig_LcSettingC_SetFloat ( LcSettingC_ARGS )
static

Atl: LcSettingC::SetFloat $setting value:double C-API
These functions set the value of the given setting to value

Definition at line 1029 of file LcSettingC_atl.c.

1029 {
1032 MK_DBL value = 0;
1035 MkErrorC_Check(hdl,LcSettingSetFloat (hdl, value));
1037 goto end;
1038 error:
1040 end:
1042}
#define SetFloat_doc
#define OT_CHECK_NF8(val)
static enum MkErrorE LcSettingSetFloat(LC_CFS setting, MK_DBL value)
These functions set the value of the given setting to value …
double MK_DBL

◆ atllcconfig_LcSettingC_SetFloatElem()

static OT_ProcRet atllcconfig_LcSettingC_SetFloatElem ( LcSettingC_ARGS )
static

Atl: LcSettingC [LcSettingC::SetFloatElem $setting idx:int32 value:double] C-API
These functions set the value at the specified index index in the setting setting to value

Definition at line 923 of file LcSettingC_atl.c.

923 {
926 MK_I32 idx = 0;
928 MK_DBL value = 0;
931 LC_CFS retVal = LcSettingSetFloatElem (hdl, idx, value);
932 if (retVal == NULL) {
933 OT_ERROR_SOFT_CONSTRUCTOR(LcSettingC);
934 goto error;
935 }
936 OT_retObj_SET_CFS(retVal);
937 goto end;
938 error:
940 end:
942}
#define SetFloatElem_doc
static LC_CFS LcSettingSetFloatElem(LC_CFS setting, MK_I32 idx, MK_DBL value)
These functions set the value at the specified index index in the setting setting to value …

◆ atllcconfig_LcSettingC_SetFormat()

static OT_ProcRet atllcconfig_LcSettingC_SetFormat ( LcSettingC_ARGS )
static

Atl: LcSettingC::SetFormat $setting format:LcConfigFormatE C-API
These functions get and set the external format for the setting setting

Definition at line 1045 of file LcSettingC_atl.c.

1045 {
1048 enum LcConfigFormatE format = 0;
1051 MkErrorC_Check(hdl,LcSettingSetFormat (hdl, format));
1053 goto end;
1054 error:
1056 end:
1058}
#define SetFormat_doc
#define OT_CHECK_ENUM(ename, val)
LcConfigFormatE
set the format of a LcSettingC …
Definition LcEnum_lc.h:30
static enum MkErrorE LcSettingSetFormat(LC_CFS setting, enum LcConfigFormatE format)
These functions get and set the external format for the setting setting …

◆ atllcconfig_LcSettingC_SetInt()

static OT_ProcRet atllcconfig_LcSettingC_SetInt ( LcSettingC_ARGS )
static

Atl: LcSettingC::SetInt $setting value:int32 C-API
These functions set the value of the given setting to value

Definition at line 1061 of file LcSettingC_atl.c.

1061 {
1064 MK_I32 value = 0;
1067 MkErrorC_Check(hdl,LcSettingSetInt (hdl, value));
1069 goto end;
1070 error:
1072 end:
1074}
#define SetInt_doc
static enum MkErrorE LcSettingSetInt(LC_CFS setting, MK_I32 value)
These functions set the value of the given setting to value …

◆ atllcconfig_LcSettingC_SetInt64()

static OT_ProcRet atllcconfig_LcSettingC_SetInt64 ( LcSettingC_ARGS )
static

Atl: LcSettingC::SetInt64 $setting value:int64 C-API
These functions set the value of the given setting to value

Definition at line 1077 of file LcSettingC_atl.c.

1077 {
1080 MK_I64 value = 0;
1083 MkErrorC_Check(hdl,LcSettingSetInt64 (hdl, value));
1085 goto end;
1086 error:
1088 end:
1090}
#define SetInt64_doc
#define OT_CHECK_NI8(val)
static enum MkErrorE LcSettingSetInt64(LC_CFS setting, MK_I64 value)
These functions set the value of the given setting to value …
signed long long MK_I64

◆ atllcconfig_LcSettingC_SetInt64Elem()

static OT_ProcRet atllcconfig_LcSettingC_SetInt64Elem ( LcSettingC_ARGS )
static

Atl: LcSettingC [LcSettingC::SetInt64Elem $setting idx:int32 value:int64] C-API
These functions set the value at the specified index index in the setting setting to value

Definition at line 945 of file LcSettingC_atl.c.

945 {
948 MK_I32 idx = 0;
950 MK_I64 value = 0;
953 LC_CFS retVal = LcSettingSetInt64Elem (hdl, idx, value);
954 if (retVal == NULL) {
955 OT_ERROR_SOFT_CONSTRUCTOR(LcSettingC);
956 goto error;
957 }
958 OT_retObj_SET_CFS(retVal);
959 goto end;
960 error:
962 end:
964}
#define SetInt64Elem_doc
static LC_CFS LcSettingSetInt64Elem(LC_CFS setting, MK_I32 idx, MK_I64 value)
These functions set the value at the specified index index in the setting setting to value …

◆ atllcconfig_LcSettingC_SetIntElem()

static OT_ProcRet atllcconfig_LcSettingC_SetIntElem ( LcSettingC_ARGS )
static

Atl: LcSettingC [LcSettingC::SetIntElem $setting idx:int32 value:int32] C-API
These functions set the value at the specified index index in the setting setting to value

Definition at line 967 of file LcSettingC_atl.c.

967 {
970 MK_I32 idx = 0;
972 MK_I32 value = 0;
975 LC_CFS retVal = LcSettingSetIntElem (hdl, idx, value);
976 if (retVal == NULL) {
977 OT_ERROR_SOFT_CONSTRUCTOR(LcSettingC);
978 goto error;
979 }
980 OT_retObj_SET_CFS(retVal);
981 goto end;
982 error:
984 end:
986}
#define SetIntElem_doc
static LC_CFS LcSettingSetIntElem(LC_CFS setting, MK_I32 idx, MK_I32 value)
These functions set the value at the specified index index in the setting setting to value …

◆ atllcconfig_LcSettingC_SetString()

static OT_ProcRet atllcconfig_LcSettingC_SetString ( LcSettingC_ARGS )
static

Atl: LcSettingC::SetString $setting value:string C-API
These functions set the value of the given setting to value

Definition at line 1093 of file LcSettingC_atl.c.

1093 {
1096 MK_STRN value = 0;
1099 MkErrorC_Check(hdl,LcSettingSetString (hdl, value));
1101 goto end;
1102 error:
1104 end:
1106}
#define SetString_doc
#define OT_CHECK_STRN(val)
static enum MkErrorE LcSettingSetString(LC_CFS setting, MK_STRN value)
These functions set the value of the given setting to value …
const MK_STRB * MK_STRN

◆ atllcconfig_LcSettingC_SetStringElem()

static OT_ProcRet atllcconfig_LcSettingC_SetStringElem ( LcSettingC_ARGS )
static

Atl: LcSettingC [LcSettingC::SetStringElem $setting idx:int32 value:string] C-API
These functions set the value at the specified index index in the setting setting to value

Definition at line 989 of file LcSettingC_atl.c.

989 {
992 MK_I32 idx = 0;
994 MK_STRN value = 0;
997 LC_CFS retVal = LcSettingSetStringElem (hdl, idx, value);
998 if (retVal == NULL) {
999 OT_ERROR_SOFT_CONSTRUCTOR(LcSettingC);
1000 goto error;
1001 }
1002 OT_retObj_SET_CFS(retVal);
1003 goto end;
1004 error:
1006 end:
1008}
#define SetStringElem_doc
static LC_CFS LcSettingSetStringElem(LC_CFS setting, MK_I32 idx, MK_STRN value)
These functions set the value at the specified index index in the setting setting to value …