theLink 10.0
Loading...
Searching...
No Matches
MqDumpC_Class_PY_API

MqDumpC - define the class … More...

+ Collaboration diagram for MqDumpC_Class_PY_API:

Functions

static OT_ProcRet pymqmsgque_MqDumpC_HandleResolve (OtClass_ARGS)
  Python: [static] MqDumpC MqDumpC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a MqDumpC from netHdl or None if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet pymqmsgque_MqDumpC_HandleGet (MqDumpC_ARGS)
 
static OT_ProcRet pymqmsgque_MqDumpC_Next (MqDumpC_ARGS)
  Python: MqDumpC dmp.Next() C-API
get next instance from linked-list of MqDumpS type
 
static OT_ProcRet pymqmsgque_MqDumpC_Prev (MqDumpC_ARGS)
  Python: MqDumpC dmp.Prev() C-API
get previous instance from linked-list of MqDumpS type
 
static OT_ProcRet pymqmsgque_MqDumpC_Instances (OtClass_ARGS)
  Python: [static] MqDumpC MqDumpC.Instances() C-API
get head-instance from linked-list of MqDumpS type …
 
static OT_ProcRet pymqmsgque_MqDumpC_GetNull (OtClass_ARGS)
  Python: [static] MqDumpC MqDumpC.GetNull() C-API
Null-Slot - return a MqDumpC typed NULL instance …
 

Detailed Description

MqDumpC - define the class …

Method definition

Function Documentation

◆ pymqmsgque_MqDumpC_GetNull()

static OT_ProcRet pymqmsgque_MqDumpC_GetNull ( OtClass_ARGS )
static

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

Definition at line 222 of file MqDumpC_py.c.

222 {
226 MQ_DMP retVal = MqDumpGetNull ();
227 OT_retObj_SET_DMP(retVal);
228 goto end;
229 error:
231 end:
233}
#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
Definition MqDumpC_py.c:105
#define OT_SETUP_hdl_static
Definition MqDumpC_py.c:28
#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 pymqmsgque data package as binary …

◆ pymqmsgque_MqDumpC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet pymqmsgque_MqDumpC_HandleGet ( MqDumpC_ARGS )
static

Definition at line 157 of file MqDumpC_py.c.

#define OT_ERROR_LNG_RETURN

◆ pymqmsgque_MqDumpC_HandleResolve()

static OT_ProcRet pymqmsgque_MqDumpC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 138 of file MqDumpC_py.c.

138 {
141 MK_HDL netHdl = 0;
144 MQ_DMP retVal = MqDumpHandleResolve (netHdl);
145 OT_retObj_SET_DMP(retVal);
146 goto end;
147 error:
149 end:
151}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
Definition MqDumpC_py.c:106
int32_t MK_HDL
#define MqDumpHandleResolve(...)
#define OT_CHECK_NIH(val)

◆ pymqmsgque_MqDumpC_Instances()

static OT_ProcRet pymqmsgque_MqDumpC_Instances ( OtClass_ARGS )
static

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

Definition at line 199 of file MqDumpC_py.c.

199 {
203 MQ_DMP retVal = MqDumpInstances ();
204 OT_retObj_SET_DMP(retVal);
205 goto end;
206 error:
208 end:
210}
#define Instances_doc
Definition MqDumpC_py.c:107
#define MqDumpInstances()

◆ pymqmsgque_MqDumpC_Next()

static OT_ProcRet pymqmsgque_MqDumpC_Next ( MqDumpC_ARGS )
static

Python: MqDumpC dmp.Next() C-API
get next instance from linked-list of MqDumpS type

Definition at line 169 of file MqDumpC_py.c.

169 {
173 MQ_DMP retVal = MqDumpNext (hdl);
174 OT_retObj_SET_DMP(retVal);
175 goto end;
176 error:
178 end:
180}
#define OT_SETUP_hdl
Definition MqDumpC_py.c:23
#define Next_doc
Definition MqDumpC_py.c:110
static MQ_DMP MqDumpNext(MQ_DMP const dmp)
get next instance from linked-list of MqDumpS type

◆ pymqmsgque_MqDumpC_Prev()

static OT_ProcRet pymqmsgque_MqDumpC_Prev ( MqDumpC_ARGS )
static

Python: MqDumpC dmp.Prev() C-API
get previous instance from linked-list of MqDumpS type

Definition at line 183 of file MqDumpC_py.c.

183 {
187 MQ_DMP retVal = MqDumpPrev (hdl);
188 OT_retObj_SET_DMP(retVal);
189 goto end;
190 error:
192 end:
194}
#define Prev_doc
Definition MqDumpC_py.c:111
static MQ_DMP MqDumpPrev(MQ_DMP const dmp)
get previous instance from linked-list of MqDumpS type