theLink 10.0
Loading...
Searching...
No Matches
MqContextC_Class_TCL_API

MqContextC - define the class … More...

+ Collaboration diagram for MqContextC_Class_TCL_API:

Functions

static OT_ProcRet tclmqmsgque_MqContextC_HandleResolve (OtClass_ARGS)
  Tcl: (static) MqContextC [MqContextC HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a MqContextC from netHdl or "MK_NULL" if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet tclmqmsgque_MqContextC_HandleGet (MqContextC_ARGS)
 
static OT_ProcRet tclmqmsgque_MqContextC_Next (MqContextC_ARGS)
  Tcl: MqContextC [$ctx Next] C-API
get next instance from linked-list of MqContextS type
 
static OT_ProcRet tclmqmsgque_MqContextC_Prev (MqContextC_ARGS)
  Tcl: MqContextC [$ctx Prev] C-API
get previous instance from linked-list of MqContextS type
 
static OT_ProcRet tclmqmsgque_MqContextC_Instances (OtClass_ARGS)
  Tcl: (static) MqContextC [MqContextC Instances] C-API
get head-instance from linked-list of MqContextS type …
 
static OT_ProcRet tclmqmsgque_MqContextC_GetNull (OtClass_ARGS)
  Tcl: (static) MqContextC [MqContextC GetNull] C-API
Null-Slot - return a MqContextC typed NULL instance …
 

Detailed Description

MqContextC - define the class …

Function Documentation

◆ tclmqmsgque_MqContextC_GetNull()

static OT_ProcRet tclmqmsgque_MqContextC_GetNull ( OtClass_ARGS )
static

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

Definition at line 573 of file MqContextC_tcl.c.

573 {
577 MQ_CTX retVal = MqContextGetNull ();
578 OT_retObj_SET_CTX(retVal);
579 goto end;
580 error:
582 end:
584}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_CTX(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
#define error
Definition high_lng.h:339
static MQ_CTX MqContextGetNull(void)
Null-Slot - return a MqContextC typed NULL instance …
PUBLIC data structure for the tclmqmsgque-specific-data

◆ tclmqmsgque_MqContextC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet tclmqmsgque_MqContextC_HandleGet ( MqContextC_ARGS )
static

Definition at line 508 of file MqContextC_tcl.c.

#define OT_ERROR_LNG_RETURN

◆ tclmqmsgque_MqContextC_HandleResolve()

static OT_ProcRet tclmqmsgque_MqContextC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 489 of file MqContextC_tcl.c.

489 {
492 MK_HDL netHdl = 0;
495 MQ_CTX retVal = MqContextHandleResolve (netHdl);
496 OT_retObj_SET_CTX(retVal);
497 goto end;
498 error:
500 end:
502}
#define OT_CHECK_NIH(val)
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define MqContextHandleResolve(...)

◆ tclmqmsgque_MqContextC_Instances()

static OT_ProcRet tclmqmsgque_MqContextC_Instances ( OtClass_ARGS )
static

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

Definition at line 550 of file MqContextC_tcl.c.

550 {
554 MQ_CTX retVal = MqContextInstances ();
555 OT_retObj_SET_CTX(retVal);
556 goto end;
557 error:
559 end:
561}
#define Instances_doc
#define MqContextInstances()

◆ tclmqmsgque_MqContextC_Next()

static OT_ProcRet tclmqmsgque_MqContextC_Next ( MqContextC_ARGS )
static

Tcl: MqContextC [$ctx Next] C-API
get next instance from linked-list of MqContextS type

Definition at line 520 of file MqContextC_tcl.c.

520 {
524 MQ_CTX retVal = MqContextNext (hdl);
525 OT_retObj_SET_CTX(retVal);
526 goto end;
527 error:
529 end:
531}
#define OT_SETUP_hdl
#define Next_doc
static MQ_CTX MqContextNext(MQ_CTX const ctx)
get next instance from linked-list of MqContextS type

◆ tclmqmsgque_MqContextC_Prev()

static OT_ProcRet tclmqmsgque_MqContextC_Prev ( MqContextC_ARGS )
static

Tcl: MqContextC [$ctx Prev] C-API
get previous instance from linked-list of MqContextS type

Definition at line 534 of file MqContextC_tcl.c.

534 {
538 MQ_CTX retVal = MqContextPrev (hdl);
539 OT_retObj_SET_CTX(retVal);
540 goto end;
541 error:
543 end:
545}
#define Prev_doc
static MQ_CTX MqContextPrev(MQ_CTX const ctx)
get previous instance from linked-list of MqContextS type