theConfig 10.0
Loading...
Searching...
No Matches
LcConfig_Enum_CC_API

LcConfig PACKAGE - definition of the enum type … More...

+ Collaboration diagram for LcConfig_Enum_CC_API:

Functions

static LcConfigFormatE cclcconfig::LcConfig::ConfigFormatE_FromInt (MK_I32 value)
  C++: [static] LcConfigFormatE LcConfig::ConfigFormatE_FromInt(MK_I32 value) C-API
return the LcConfigFormatE from integer …
 
static LcConfigOptionsEF cclcconfig::LcConfig::ConfigOptionsEF_FromInt (MK_I32 value)
  C++: [static] LcConfigOptionsEF LcConfig::ConfigOptionsEF_FromInt(MK_I32 value) C-API
return the LcConfigOptionsEF from integer …
 
static LcConfigTypeE cclcconfig::LcConfig::ConfigTypeE_FromInt (MK_I32 value)
  C++: [static] LcConfigTypeE LcConfig::ConfigTypeE_FromInt(MK_I32 value) C-API
return the LcConfigTypeE from integer …
 
static LcErrorE cclcconfig::LcConfig::ErrorE_FromInt (MK_I32 value)
  C++: [static] LcErrorE LcConfig::ErrorE_FromInt(MK_I32 value) C-API
return the LcErrorE from integer …
 
static LcErrorTypeE cclcconfig::LcConfig::ErrorTypeE_FromInt (MK_I32 value)
  C++: [static] LcErrorTypeE LcConfig::ErrorTypeE_FromInt(MK_I32 value) C-API
return the LcErrorTypeE from integer …
 
static MK_I32 cclcconfig::LcConfig::ConfigFormatE_ToInt (LcConfigFormatE value)
  C++: [static] MK_I32 LcConfig::ConfigFormatE_ToInt(LcConfigFormatE value) C-API
return the LcConfigFormatE as integer …
 
static MK_STRN cclcconfig::LcConfig::ConfigFormatE_ToString (LcConfigFormatE value)
  C++: [static] MK_STRN LcConfig::ConfigFormatE_ToString(LcConfigFormatE value) C-API
return the LcConfigFormatE as string …
 
static MK_I32 cclcconfig::LcConfig::ConfigOptionsEF_ToInt (LcConfigOptionsEF value)
  C++: [static] MK_I32 LcConfig::ConfigOptionsEF_ToInt(LcConfigOptionsEF value) C-API
return the LcConfigOptionsEF as integer …
 
static MK_STRN cclcconfig::LcConfig::ConfigOptionsEF_ToString (LcConfigOptionsEF value)
  C++: [static] MK_STRN LcConfig::ConfigOptionsEF_ToString(LcConfigOptionsEF value) C-API
return the LcConfigOptionsEF as string …
 
static MK_I32 cclcconfig::LcConfig::ConfigTypeE_ToInt (LcConfigTypeE value)
  C++: [static] MK_I32 LcConfig::ConfigTypeE_ToInt(LcConfigTypeE value) C-API
return the LcConfigTypeE as integer …
 
static MK_STRN cclcconfig::LcConfig::ConfigTypeE_ToString (LcConfigTypeE value)
  C++: [static] MK_STRN LcConfig::ConfigTypeE_ToString(LcConfigTypeE value) C-API
return the LcConfigTypeE as string …
 
static MK_I32 cclcconfig::LcConfig::ErrorE_ToInt (LcErrorE value)
  C++: [static] MK_I32 LcConfig::ErrorE_ToInt(LcErrorE value) C-API
return the LcErrorE as integer …
 
static MK_STRN cclcconfig::LcConfig::ErrorE_ToString (LcErrorE value)
  C++: [static] MK_STRN LcConfig::ErrorE_ToString(LcErrorE value) C-API
return the LcErrorE as string …
 
static MK_I32 cclcconfig::LcConfig::ErrorTypeE_ToInt (LcErrorTypeE value)
  C++: [static] MK_I32 LcConfig::ErrorTypeE_ToInt(LcErrorTypeE value) C-API
return the LcErrorTypeE as integer …
 
static MK_STRN cclcconfig::LcConfig::ErrorTypeE_ToString (LcErrorTypeE value)
  C++: [static] MK_STRN LcConfig::ErrorTypeE_ToString(LcErrorTypeE value) C-API
return the LcErrorTypeE as string …
 

Detailed Description

LcConfig PACKAGE - definition of the enum type …

read more at: MkKernel_Enum_C_API

read more at: MkKernel_Enum_C_API

Function Documentation

◆ ConfigFormatE_FromInt()

LcConfigFormatE cclcconfig::LcConfig::ConfigFormatE_FromInt ( MK_I32 value)
inlinestatic

C++: [static] LcConfigFormatE LcConfig::ConfigFormatE_FromInt(MK_I32 value) C-API
return the LcConfigFormatE from integer …

Definition at line 27 of file LibLcConfig_inline_cc.hh.

27 {
29 enum LcConfigFormatE value_out;
30 enum MkErrorE errVal = LcConfigFormatE_FromInt(value, &value_out);
31 MkErrorC_Check(NULL, errVal);
32 return value_out;
33 }
LcConfigFormatE
set the format of a LcSettingC …
Definition LcEnum_lc.h:30
enum MkErrorE LcConfigFormatE_FromInt(MK_I32 const value, enum LcConfigFormatE *value_out)
return the LcConfigFormatE from integer …
#define MkRtSetup_NULL

◆ ConfigFormatE_ToInt()

MK_I32 cclcconfig::LcConfig::ConfigFormatE_ToInt ( LcConfigFormatE value)
inlinestatic

C++: [static] MK_I32 LcConfig::ConfigFormatE_ToInt(LcConfigFormatE value) C-API
return the LcConfigFormatE as integer …

Definition at line 74 of file LibLcConfig_inline_cc.hh.

74 {
76 MK_I32 __retVal__L = LcConfigFormatE_ToInt(value);
77 return __retVal__L;
78 }
static MK_I32 LcConfigFormatE_ToInt(enum LcConfigFormatE value)
return the LcConfigFormatE as integer …
Definition LcEnum_lc.h:55
signed int MK_I32

◆ ConfigFormatE_ToString()

MK_STRN cclcconfig::LcConfig::ConfigFormatE_ToString ( LcConfigFormatE value)
inlinestatic

C++: [static] MK_STRN LcConfig::ConfigFormatE_ToString(LcConfigFormatE value) C-API
return the LcConfigFormatE as string …

Definition at line 81 of file LibLcConfig_inline_cc.hh.

81 {
83 MK_STRN __retVal__L = LcConfigFormatE_ToString(value);
84 return __retVal__L;
85 }
MK_STRN LcConfigFormatE_ToString(enum LcConfigFormatE value)
return the LcConfigFormatE as string …
const MK_STRB * MK_STRN

◆ ConfigOptionsEF_FromInt()

LcConfigOptionsEF cclcconfig::LcConfig::ConfigOptionsEF_FromInt ( MK_I32 value)
inlinestatic

C++: [static] LcConfigOptionsEF LcConfig::ConfigOptionsEF_FromInt(MK_I32 value) C-API
return the LcConfigOptionsEF from integer …

Definition at line 36 of file LibLcConfig_inline_cc.hh.

36 {
38 enum LcConfigOptionsEF value_out;
39 enum MkErrorE errVal = LcConfigOptionsEF_FromInt(value, &value_out);
40 MkErrorC_Check(NULL, errVal);
41 return value_out;
42 }
LcConfigOptionsEF
define the configuration-option of a LcConfigC …
Definition LcEnum_lc.h:134
enum MkErrorE LcConfigOptionsEF_FromInt(MK_I32 const value, enum LcConfigOptionsEF *value_out)
return the LcConfigOptionsEF from integer …

◆ ConfigOptionsEF_ToInt()

MK_I32 cclcconfig::LcConfig::ConfigOptionsEF_ToInt ( LcConfigOptionsEF value)
inlinestatic

C++: [static] MK_I32 LcConfig::ConfigOptionsEF_ToInt(LcConfigOptionsEF value) C-API
return the LcConfigOptionsEF as integer …

Definition at line 88 of file LibLcConfig_inline_cc.hh.

88 {
90 MK_I32 __retVal__L = LcConfigOptionsEF_ToInt(value);
91 return __retVal__L;
92 }
static MK_I32 LcConfigOptionsEF_ToInt(enum LcConfigOptionsEF value)
return the LcConfigOptionsEF as integer …
Definition LcEnum_lc.h:166

◆ ConfigOptionsEF_ToString()

MK_STRN cclcconfig::LcConfig::ConfigOptionsEF_ToString ( LcConfigOptionsEF value)
inlinestatic

C++: [static] MK_STRN LcConfig::ConfigOptionsEF_ToString(LcConfigOptionsEF value) C-API
return the LcConfigOptionsEF as string …

Definition at line 95 of file LibLcConfig_inline_cc.hh.

95 {
97 MK_STRN __retVal__L = LcConfigOptionsEF_ToString(value);
98 return __retVal__L;
99 }
MK_STRN LcConfigOptionsEF_ToString(enum LcConfigOptionsEF value)
return the LcConfigOptionsEF as string …

◆ ConfigTypeE_FromInt()

LcConfigTypeE cclcconfig::LcConfig::ConfigTypeE_FromInt ( MK_I32 value)
inlinestatic

C++: [static] LcConfigTypeE LcConfig::ConfigTypeE_FromInt(MK_I32 value) C-API
return the LcConfigTypeE from integer …

Definition at line 45 of file LibLcConfig_inline_cc.hh.

45 {
47 enum LcConfigTypeE value_out;
48 enum MkErrorE errVal = LcConfigTypeE_FromInt(value, &value_out);
49 MkErrorC_Check(NULL, errVal);
50 return value_out;
51 }
enum MkErrorE LcConfigTypeE_FromInt(MK_I32 const value, enum LcConfigTypeE *value_out)
return the LcConfigTypeE from integer …
LcConfigTypeE
define the data-type of a LcSettingC …
Definition LcEnum_lc.h:78

◆ ConfigTypeE_ToInt()

MK_I32 cclcconfig::LcConfig::ConfigTypeE_ToInt ( LcConfigTypeE value)
inlinestatic

C++: [static] MK_I32 LcConfig::ConfigTypeE_ToInt(LcConfigTypeE value) C-API
return the LcConfigTypeE as integer …

Definition at line 102 of file LibLcConfig_inline_cc.hh.

102 {
104 MK_I32 __retVal__L = LcConfigTypeE_ToInt(value);
105 return __retVal__L;
106 }
static MK_I32 LcConfigTypeE_ToInt(enum LcConfigTypeE value)
return the LcConfigTypeE as integer …
Definition LcEnum_lc.h:110

◆ ConfigTypeE_ToString()

MK_STRN cclcconfig::LcConfig::ConfigTypeE_ToString ( LcConfigTypeE value)
inlinestatic

C++: [static] MK_STRN LcConfig::ConfigTypeE_ToString(LcConfigTypeE value) C-API
return the LcConfigTypeE as string …

Definition at line 109 of file LibLcConfig_inline_cc.hh.

109 {
111 MK_STRN __retVal__L = LcConfigTypeE_ToString(value);
112 return __retVal__L;
113 }
MK_STRN LcConfigTypeE_ToString(enum LcConfigTypeE value)
return the LcConfigTypeE as string …

◆ ErrorE_FromInt()

LcErrorE cclcconfig::LcConfig::ErrorE_FromInt ( MK_I32 value)
inlinestatic

C++: [static] LcErrorE LcConfig::ErrorE_FromInt(MK_I32 value) C-API
return the LcErrorE from integer …

Definition at line 54 of file LibLcConfig_inline_cc.hh.

54 {
56 enum LcErrorE value_out;
57 enum MkErrorE errVal = LcErrorE_FromInt(value, &value_out);
58 MkErrorC_Check(NULL, errVal);
59 return value_out;
60 }
enum MkErrorE LcErrorE_FromInt(MK_I32 const value, enum LcErrorE *value_out)
return the LcErrorE from integer …
LcErrorE
Signals an error and is used as the return value of a function …
Definition LcEnum_lc.h:188

◆ ErrorE_ToInt()

MK_I32 cclcconfig::LcConfig::ErrorE_ToInt ( LcErrorE value)
inlinestatic

C++: [static] MK_I32 LcConfig::ErrorE_ToInt(LcErrorE value) C-API
return the LcErrorE as integer …

Definition at line 116 of file LibLcConfig_inline_cc.hh.

116 {
118 MK_I32 __retVal__L = LcErrorE_ToInt(value);
119 return __retVal__L;
120 }
static MK_I32 LcErrorE_ToInt(enum LcErrorE value)
return the LcErrorE as integer …
Definition LcEnum_lc.h:205

◆ ErrorE_ToString()

MK_STRN cclcconfig::LcConfig::ErrorE_ToString ( LcErrorE value)
inlinestatic

C++: [static] MK_STRN LcConfig::ErrorE_ToString(LcErrorE value) C-API
return the LcErrorE as string …

Definition at line 123 of file LibLcConfig_inline_cc.hh.

123 {
125 MK_STRN __retVal__L = LcErrorE_ToString(value);
126 return __retVal__L;
127 }
MK_STRN LcErrorE_ToString(enum LcErrorE value)
return the LcErrorE as string …

◆ ErrorTypeE_FromInt()

LcErrorTypeE cclcconfig::LcConfig::ErrorTypeE_FromInt ( MK_I32 value)
inlinestatic

C++: [static] LcErrorTypeE LcConfig::ErrorTypeE_FromInt(MK_I32 value) C-API
return the LcErrorTypeE from integer …

Definition at line 63 of file LibLcConfig_inline_cc.hh.

63 {
65 enum LcErrorTypeE value_out;
66 enum MkErrorE errVal = LcErrorTypeE_FromInt(value, &value_out);
67 MkErrorC_Check(NULL, errVal);
68 return value_out;
69 }
enum MkErrorE LcErrorTypeE_FromInt(MK_I32 const value, enum LcErrorTypeE *value_out)
return the LcErrorTypeE from integer …
LcErrorTypeE
error types
Definition LcEnum_lc.h:228

◆ ErrorTypeE_ToInt()

MK_I32 cclcconfig::LcConfig::ErrorTypeE_ToInt ( LcErrorTypeE value)
inlinestatic

C++: [static] MK_I32 LcConfig::ErrorTypeE_ToInt(LcErrorTypeE value) C-API
return the LcErrorTypeE as integer …

Definition at line 130 of file LibLcConfig_inline_cc.hh.

130 {
132 MK_I32 __retVal__L = LcErrorTypeE_ToInt(value);
133 return __retVal__L;
134 }
static MK_I32 LcErrorTypeE_ToInt(enum LcErrorTypeE value)
return the LcErrorTypeE as integer …
Definition LcEnum_lc.h:246

◆ ErrorTypeE_ToString()

MK_STRN cclcconfig::LcConfig::ErrorTypeE_ToString ( LcErrorTypeE value)
inlinestatic

C++: [static] MK_STRN LcConfig::ErrorTypeE_ToString(LcErrorTypeE value) C-API
return the LcErrorTypeE as string …

Definition at line 137 of file LibLcConfig_inline_cc.hh.

137 {
139 MK_STRN __retVal__L = LcErrorTypeE_ToString(value);
140 return __retVal__L;
141 }
MK_STRN LcErrorTypeE_ToString(enum LcErrorTypeE value)
return the LcErrorTypeE as string …