theLink 10.0
Loading...
Searching...
No Matches
MqDumpC_Class_TCL_API

MqDumpC - define the class … More...

+ Collaboration diagram for MqDumpC_Class_TCL_API:

Functions

static OT_ProcRet tclmqmsgque_MqDumpC_HandleResolve (OtClass_ARGS)
  Tcl: (static) MqDumpC [MqDumpC HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a MqDumpC from netHdl or "MK_NULL" if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet tclmqmsgque_MqDumpC_HandleGet (MqDumpC_ARGS)
 
static OT_ProcRet tclmqmsgque_MqDumpC_Next (MqDumpC_ARGS)
  Tcl: MqDumpC [$dmp Next] C-API
get next instance from linked-list of MqDumpS type
 
static OT_ProcRet tclmqmsgque_MqDumpC_Prev (MqDumpC_ARGS)
  Tcl: MqDumpC [$dmp Prev] C-API
get previous instance from linked-list of MqDumpS type
 
static OT_ProcRet tclmqmsgque_MqDumpC_Instances (OtClass_ARGS)
  Tcl: (static) MqDumpC [MqDumpC Instances] C-API
get head-instance from linked-list of MqDumpS type …
 
static OT_ProcRet tclmqmsgque_MqDumpC_GetNull (OtClass_ARGS)
  Tcl: (static) MqDumpC [MqDumpC GetNull] C-API
Null-Slot - return a MqDumpC typed NULL instance …
 

Detailed Description

MqDumpC - define the class …

Function Documentation

◆ tclmqmsgque_MqDumpC_GetNull()

static OT_ProcRet tclmqmsgque_MqDumpC_GetNull ( OtClass_ARGS )
static

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

Definition at line 240 of file MqDumpC_tcl.c.

240 {
244 MQ_DMP retVal = MqDumpGetNull ();
245 OT_retObj_SET_DMP(retVal);
246 goto end;
247 error:
249 end:
251}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_DMP(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
Definition MqDumpC_tcl.c:53
#define error
Definition high_lng.h:339
static MQ_DMP MqDumpGetNull(void)
Null-Slot - return a MqDumpC typed NULL instance …
MqDumpC - the class known as dmp or dump is used to export a tclmqmsgque data package as binary …

◆ tclmqmsgque_MqDumpC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet tclmqmsgque_MqDumpC_HandleGet ( MqDumpC_ARGS )
static

Definition at line 175 of file MqDumpC_tcl.c.

#define OT_ERROR_LNG_RETURN

◆ tclmqmsgque_MqDumpC_HandleResolve()

static OT_ProcRet tclmqmsgque_MqDumpC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 156 of file MqDumpC_tcl.c.

156 {
159 MK_HDL netHdl = 0;
162 MQ_DMP retVal = MqDumpHandleResolve (netHdl);
163 OT_retObj_SET_DMP(retVal);
164 goto end;
165 error:
167 end:
169}
#define OT_CHECK_NIH(val)
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define MqDumpHandleResolve(...)

◆ tclmqmsgque_MqDumpC_Instances()

static OT_ProcRet tclmqmsgque_MqDumpC_Instances ( OtClass_ARGS )
static

Tcl: (static) MqDumpC [MqDumpC Instances] C-API
get head-instance from linked-list of MqDumpS type …

Definition at line 217 of file MqDumpC_tcl.c.

217 {
221 MQ_DMP retVal = MqDumpInstances ();
222 OT_retObj_SET_DMP(retVal);
223 goto end;
224 error:
226 end:
228}
#define Instances_doc
#define MqDumpInstances()

◆ tclmqmsgque_MqDumpC_Next()

static OT_ProcRet tclmqmsgque_MqDumpC_Next ( MqDumpC_ARGS )
static

Tcl: MqDumpC [$dmp Next] C-API
get next instance from linked-list of MqDumpS type

Definition at line 187 of file MqDumpC_tcl.c.

187 {
191 MQ_DMP retVal = MqDumpNext (hdl);
192 OT_retObj_SET_DMP(retVal);
193 goto end;
194 error:
196 end:
198}
#define OT_SETUP_hdl
Definition MqDumpC_tcl.c:59
#define Next_doc
static MQ_DMP MqDumpNext(MQ_DMP const dmp)
get next instance from linked-list of MqDumpS type

◆ tclmqmsgque_MqDumpC_Prev()

static OT_ProcRet tclmqmsgque_MqDumpC_Prev ( MqDumpC_ARGS )
static

Tcl: MqDumpC [$dmp Prev] C-API
get previous instance from linked-list of MqDumpS type

Definition at line 201 of file MqDumpC_tcl.c.

201 {
205 MQ_DMP retVal = MqDumpPrev (hdl);
206 OT_retObj_SET_DMP(retVal);
207 goto end;
208 error:
210 end:
212}
#define Prev_doc
static MQ_DMP MqDumpPrev(MQ_DMP const dmp)
get previous instance from linked-list of MqDumpS type