theConfig 10.0
Loading...
Searching...
No Matches
LcConfigC_Class_ATL_API

LcConfigC - define the class … More...

+ Collaboration diagram for LcConfigC_Class_ATL_API:

Functions

static OT_ProcRet atllcconfig_LcConfigC_HandleResolve (OtClass_ARGS)
  Atl: (static) LcConfigC [LcConfigC::HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a LcConfigC from netHdl or "MK_NULL" if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet atllcconfig_LcConfigC_HandleGet (LcConfigC_ARGS)
 
static OT_ProcRet atllcconfig_LcConfigC_Next (LcConfigC_ARGS)
  Atl: LcConfigC [LcConfigC::Next $cfg] C-API
get next instance from linked-list of LcConfigS type
 
static OT_ProcRet atllcconfig_LcConfigC_Prev (LcConfigC_ARGS)
  Atl: LcConfigC [LcConfigC::Prev $cfg] C-API
get previous instance from linked-list of LcConfigS type
 
static OT_ProcRet atllcconfig_LcConfigC_Instances (OtClass_ARGS)
  Atl: (static) LcConfigC [LcConfigC::Instances] C-API
get head-instance from linked-list of LcConfigS type …
 
static OT_ProcRet atllcconfig_LcConfigC_GetNull (OtClass_ARGS)
  Atl: (static) LcConfigC [LcConfigC::GetNull] C-API
Null-Slot - return a LcConfigC typed NULL instance …
 

Detailed Description

LcConfigC - define the class …

Function Documentation

◆ atllcconfig_LcConfigC_GetNull()

static OT_ProcRet atllcconfig_LcConfigC_GetNull ( OtClass_ARGS )
static

Atl: (static) LcConfigC [LcConfigC::GetNull] C-API
Null-Slot - return a LcConfigC typed NULL instance …

Definition at line 250 of file LcConfigC_atl.c.

250 {
254 LC_CFG retVal = LcConfigGetNull ();
255 OT_retObj_SET_CFG(retVal);
256 goto end;
257 error:
259 end:
261}
#define GetNull_doc
#define OT_SETUP_hdl_static
#define OT_retObj_SET_CFG(nat)
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
static LC_CFG LcConfigGetNull(void)
Null-Slot - return a LcConfigC typed NULL instance …
Struct to represent the data from the LcConfigC …

◆ atllcconfig_LcConfigC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet atllcconfig_LcConfigC_HandleGet ( LcConfigC_ARGS )
static

Definition at line 185 of file LcConfigC_atl.c.

#define OT_ERROR_LNG_RETURN

◆ atllcconfig_LcConfigC_HandleResolve()

static OT_ProcRet atllcconfig_LcConfigC_HandleResolve ( OtClass_ARGS )
static

Atl: (static) LcConfigC [LcConfigC::HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a LcConfigC from netHdl or "MK_NULL" if invalid…

Definition at line 166 of file LcConfigC_atl.c.

166 {
169 MK_HDL netHdl = 0;
172 LC_CFG retVal = LcConfigHandleResolve (netHdl);
173 OT_retObj_SET_CFG(retVal);
174 goto end;
175 error:
177 end:
179}
#define HandleResolve_doc
#define OT_CHECK_NIH(val)
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define LcConfigHandleResolve(...)
int32_t MK_HDL

◆ atllcconfig_LcConfigC_Instances()

static OT_ProcRet atllcconfig_LcConfigC_Instances ( OtClass_ARGS )
static

Atl: (static) LcConfigC [LcConfigC::Instances] C-API
get head-instance from linked-list of LcConfigS type …

Definition at line 227 of file LcConfigC_atl.c.

227 {
231 LC_CFG retVal = LcConfigInstances ();
232 OT_retObj_SET_CFG(retVal);
233 goto end;
234 error:
236 end:
238}
#define Instances_doc
#define LcConfigInstances()

◆ atllcconfig_LcConfigC_Next()

static OT_ProcRet atllcconfig_LcConfigC_Next ( LcConfigC_ARGS )
static

Atl: LcConfigC [LcConfigC::Next $cfg] C-API
get next instance from linked-list of LcConfigS type

Definition at line 197 of file LcConfigC_atl.c.

197 {
201 LC_CFG retVal = LcConfigNext (hdl);
202 OT_retObj_SET_CFG(retVal);
203 goto end;
204 error:
206 end:
208}
#define OT_SETUP_hdl
#define Next_doc
static LC_CFG LcConfigNext(LC_CFG const cfg)
get next instance from linked-list of LcConfigS type

◆ atllcconfig_LcConfigC_Prev()

static OT_ProcRet atllcconfig_LcConfigC_Prev ( LcConfigC_ARGS )
static

Atl: LcConfigC [LcConfigC::Prev $cfg] C-API
get previous instance from linked-list of LcConfigS type

Definition at line 211 of file LcConfigC_atl.c.

211 {
215 LC_CFG retVal = LcConfigPrev (hdl);
216 OT_retObj_SET_CFG(retVal);
217 goto end;
218 error:
220 end:
222}
#define Prev_doc
static LC_CFG LcConfigPrev(LC_CFG const cfg)
get previous instance from linked-list of LcConfigS type