theLink 10.0
Loading...
Searching...
No Matches
MqContextC_Class_PY_API

MqContextC - define the class … More...

+ Collaboration diagram for MqContextC_Class_PY_API:

Functions

static OT_ProcRet pymqmsgque_MqContextC_HandleResolve (OtClass_ARGS)
  Python: [static] MqContextC MqContextC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a MqContextC from netHdl or None if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet pymqmsgque_MqContextC_HandleGet (MqContextC_ARGS)
 
static OT_ProcRet pymqmsgque_MqContextC_Next (MqContextC_ARGS)
  Python: MqContextC ctx.Next() C-API
get next instance from linked-list of MqContextS type
 
static OT_ProcRet pymqmsgque_MqContextC_Prev (MqContextC_ARGS)
  Python: MqContextC ctx.Prev() C-API
get previous instance from linked-list of MqContextS type
 
static OT_ProcRet pymqmsgque_MqContextC_Instances (OtClass_ARGS)
  Python: [static] MqContextC MqContextC.Instances() C-API
get head-instance from linked-list of MqContextS type …
 
static OT_ProcRet pymqmsgque_MqContextC_GetNull (OtClass_ARGS)
  Python: [static] MqContextC MqContextC.GetNull() C-API
Null-Slot - return a MqContextC typed NULL instance …
 

Detailed Description

MqContextC - define the class …

Function Documentation

◆ pymqmsgque_MqContextC_GetNull()

static OT_ProcRet pymqmsgque_MqContextC_GetNull ( OtClass_ARGS )
static

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

Definition at line 536 of file MqContextC_py.c.

536 {
540 MQ_CTX retVal = MqContextGetNull ();
541 OT_retObj_SET_CTX(retVal);
542 goto end;
543 error:
545 end:
547}
#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 pymqmsgque-specific-data

◆ pymqmsgque_MqContextC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet pymqmsgque_MqContextC_HandleGet ( MqContextC_ARGS )
static

Definition at line 471 of file MqContextC_py.c.

#define OT_ERROR_LNG_RETURN

◆ pymqmsgque_MqContextC_HandleResolve()

static OT_ProcRet pymqmsgque_MqContextC_HandleResolve ( OtClass_ARGS )
static

Python: [static] MqContextC MqContextC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a MqContextC from netHdl or None if invalid…

Definition at line 452 of file MqContextC_py.c.

452 {
455 MK_HDL netHdl = 0;
458 MQ_CTX retVal = MqContextHandleResolve (netHdl);
459 OT_retObj_SET_CTX(retVal);
460 goto end;
461 error:
463 end:
465}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define MqContextHandleResolve(...)
#define OT_CHECK_NIH(val)

◆ pymqmsgque_MqContextC_Instances()

static OT_ProcRet pymqmsgque_MqContextC_Instances ( OtClass_ARGS )
static

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

Definition at line 513 of file MqContextC_py.c.

513 {
517 MQ_CTX retVal = MqContextInstances ();
518 OT_retObj_SET_CTX(retVal);
519 goto end;
520 error:
522 end:
524}
#define Instances_doc
#define MqContextInstances()

◆ pymqmsgque_MqContextC_Next()

static OT_ProcRet pymqmsgque_MqContextC_Next ( MqContextC_ARGS )
static

Python: MqContextC ctx.Next() C-API
get next instance from linked-list of MqContextS type

Definition at line 483 of file MqContextC_py.c.

483 {
487 MQ_CTX retVal = MqContextNext (hdl);
488 OT_retObj_SET_CTX(retVal);
489 goto end;
490 error:
492 end:
494}
#define OT_SETUP_hdl
#define Next_doc
static MQ_CTX MqContextNext(MQ_CTX const ctx)
get next instance from linked-list of MqContextS type

◆ pymqmsgque_MqContextC_Prev()

static OT_ProcRet pymqmsgque_MqContextC_Prev ( MqContextC_ARGS )
static

Python: MqContextC ctx.Prev() C-API
get previous instance from linked-list of MqContextS type

Definition at line 497 of file MqContextC_py.c.

497 {
501 MQ_CTX retVal = MqContextPrev (hdl);
502 OT_retObj_SET_CTX(retVal);
503 goto end;
504 error:
506 end:
508}
#define Prev_doc
static MQ_CTX MqContextPrev(MQ_CTX const ctx)
get previous instance from linked-list of MqContextS type