theLink 10.0
Loading...
Searching...
No Matches
MqFactoryC_Class_TCL_API

MqFactoryC - define the class … More...

+ Collaboration diagram for MqFactoryC_Class_TCL_API:

Functions

static OT_ProcRet tclmqmsgque_MqFactoryC_HandleResolve (OtClass_ARGS)
  Tcl: (static) MqFactoryC [MqFactoryC HandleResolve netHdl:MK_HDL] C-API
Handle-Resolve-Slot - return a MqFactoryC from netHdl or "MK_NULL" if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet tclmqmsgque_MqFactoryC_HandleGet (MqFactoryC_ARGS)
 
static OT_ProcRet tclmqmsgque_MqFactoryC_Next (MqFactoryC_ARGS)
  Tcl: MqFactoryC [$fct Next] C-API
get next instance from linked-list of MqFactoryS type
 
static OT_ProcRet tclmqmsgque_MqFactoryC_Prev (MqFactoryC_ARGS)
  Tcl: MqFactoryC [$fct Prev] C-API
get previous instance from linked-list of MqFactoryS type
 
static OT_ProcRet tclmqmsgque_MqFactoryC_Instances (OtClass_ARGS)
  Tcl: (static) MqFactoryC [MqFactoryC Instances] C-API
get head-instance from linked-list of MqFactoryS type …
 
static OT_ProcRet tclmqmsgque_MqFactoryC_GetNull (OtClass_ARGS)
  Tcl: (static) MqFactoryC [MqFactoryC GetNull] C-API
Null-Slot - return a MqFactoryC typed NULL instance …
 

Detailed Description

MqFactoryC - define the class …

Method definition

Function Documentation

◆ tclmqmsgque_MqFactoryC_GetNull()

static OT_ProcRet tclmqmsgque_MqFactoryC_GetNull ( OtClass_ARGS )
static

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

Definition at line 504 of file MqFactoryC_tcl.c.

504 {
508 MQ_FCT retVal = MqFactoryGetNull ();
509 OT_retObj_SET_FCT(retVal);
510 goto end;
511 error:
513 end:
515}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_FCT(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
#define error
Definition high_lng.h:339
static MQ_FCT MqFactoryGetNull(void)
Null-Slot - return a MqFactoryC typed NULL instance …
data used to define a factory

◆ tclmqmsgque_MqFactoryC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet tclmqmsgque_MqFactoryC_HandleGet ( MqFactoryC_ARGS )
static

Definition at line 439 of file MqFactoryC_tcl.c.

#define OT_ERROR_LNG_RETURN

◆ tclmqmsgque_MqFactoryC_HandleResolve()

static OT_ProcRet tclmqmsgque_MqFactoryC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 420 of file MqFactoryC_tcl.c.

420 {
423 MK_HDL netHdl = 0;
426 MQ_FCT retVal = MqFactoryHandleResolve (netHdl);
427 OT_retObj_SET_FCT(retVal);
428 goto end;
429 error:
431 end:
433}
#define OT_CHECK_NIH(val)
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define MqFactoryHandleResolve(...)

◆ tclmqmsgque_MqFactoryC_Instances()

static OT_ProcRet tclmqmsgque_MqFactoryC_Instances ( OtClass_ARGS )
static

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

Definition at line 481 of file MqFactoryC_tcl.c.

481 {
485 MQ_FCT retVal = MqFactoryInstances ();
486 OT_retObj_SET_FCT(retVal);
487 goto end;
488 error:
490 end:
492}
#define Instances_doc
#define MqFactoryInstances()

◆ tclmqmsgque_MqFactoryC_Next()

static OT_ProcRet tclmqmsgque_MqFactoryC_Next ( MqFactoryC_ARGS )
static

Tcl: MqFactoryC [$fct Next] C-API
get next instance from linked-list of MqFactoryS type

Definition at line 451 of file MqFactoryC_tcl.c.

451 {
455 MQ_FCT retVal = MqFactoryNext (hdl);
456 OT_retObj_SET_FCT(retVal);
457 goto end;
458 error:
460 end:
462}
#define OT_SETUP_hdl
#define Next_doc
static MQ_FCT MqFactoryNext(MQ_FCT const fct)
get next instance from linked-list of MqFactoryS type

◆ tclmqmsgque_MqFactoryC_Prev()

static OT_ProcRet tclmqmsgque_MqFactoryC_Prev ( MqFactoryC_ARGS )
static

Tcl: MqFactoryC [$fct Prev] C-API
get previous instance from linked-list of MqFactoryS type

Definition at line 465 of file MqFactoryC_tcl.c.

465 {
469 MQ_FCT retVal = MqFactoryPrev (hdl);
470 OT_retObj_SET_FCT(retVal);
471 goto end;
472 error:
474 end:
476}
#define Prev_doc
static MQ_FCT MqFactoryPrev(MQ_FCT const fct)
get previous instance from linked-list of MqFactoryS type