theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3BlobC_Class_PY_API

Sq3BlobC - define the class … More...

+ Collaboration diagram for Sq3BlobC_Class_PY_API:

Functions

static OT_ProcRet pysq3lite_Sq3BlobC_HandleResolve (OtClass_ARGS)
  Python: [static] Sq3BlobC Sq3BlobC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a Sq3BlobC from netHdl or None if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet pysq3lite_Sq3BlobC_HandleGet (Sq3BlobC_ARGS)
 
static OT_ProcRet pysq3lite_Sq3BlobC_Next (Sq3BlobC_ARGS)
  Python: Sq3BlobC blob.Next() C-API
get next instance from linked-list of Sq3BlobS type
 
static OT_ProcRet pysq3lite_Sq3BlobC_Prev (Sq3BlobC_ARGS)
  Python: Sq3BlobC blob.Prev() C-API
get previous instance from linked-list of Sq3BlobS type
 
static OT_ProcRet pysq3lite_Sq3BlobC_Instances (OtClass_ARGS)
  Python: [static] Sq3BlobC Sq3BlobC.Instances() C-API
get head-instance from linked-list of Sq3BlobS type …
 
static OT_ProcRet pysq3lite_Sq3BlobC_GetNull (OtClass_ARGS)
  Python: [static] Sq3BlobC Sq3BlobC.GetNull() C-API
Null-Slot - return a Sq3BlobC typed NULL instance …
 

Detailed Description

Sq3BlobC - define the class …

Method definition

Function Documentation

◆ pysq3lite_Sq3BlobC_GetNull()

static OT_ProcRet pysq3lite_Sq3BlobC_GetNull ( OtClass_ARGS )
static

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

Definition at line 223 of file Sq3BlobC_py.c.

223 {
227 SQ3_BLOB retVal = Sq3BlobGetNull ();
228 OT_retObj_SET_BLOB(retVal);
229 goto end;
230 error:
232 end:
234}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_BLOB(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
Definition Sq3BlobC_py.c:28
static SQ3_BLOB Sq3BlobGetNull(void)
Null-Slot - return a Sq3BlobC typed NULL instance …
Struct to represent the data of the Sq3BlobC …

◆ pysq3lite_Sq3BlobC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet pysq3lite_Sq3BlobC_HandleGet ( Sq3BlobC_ARGS )
static

Definition at line 158 of file Sq3BlobC_py.c.

#define OT_ERROR_LNG_RETURN

◆ pysq3lite_Sq3BlobC_HandleResolve()

static OT_ProcRet pysq3lite_Sq3BlobC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 139 of file Sq3BlobC_py.c.

139 {
142 MK_HDL netHdl = 0;
145 SQ3_BLOB retVal = Sq3BlobHandleResolve (netHdl);
146 OT_retObj_SET_BLOB(retVal);
147 goto end;
148 error:
150 end:
152}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define Sq3BlobHandleResolve(...)
#define OT_CHECK_NIH(val)

◆ pysq3lite_Sq3BlobC_Instances()

static OT_ProcRet pysq3lite_Sq3BlobC_Instances ( OtClass_ARGS )
static

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

Definition at line 200 of file Sq3BlobC_py.c.

200 {
204 SQ3_BLOB retVal = Sq3BlobInstances ();
205 OT_retObj_SET_BLOB(retVal);
206 goto end;
207 error:
209 end:
211}
#define Instances_doc
#define Sq3BlobInstances()

◆ pysq3lite_Sq3BlobC_Next()

static OT_ProcRet pysq3lite_Sq3BlobC_Next ( Sq3BlobC_ARGS )
static

Python: Sq3BlobC blob.Next() C-API
get next instance from linked-list of Sq3BlobS type

Definition at line 170 of file Sq3BlobC_py.c.

170 {
174 SQ3_BLOB retVal = Sq3BlobNext (hdl);
175 OT_retObj_SET_BLOB(retVal);
176 goto end;
177 error:
179 end:
181}
#define OT_SETUP_hdl
Definition Sq3BlobC_py.c:23
#define Next_doc
static SQ3_BLOB Sq3BlobNext(SQ3_BLOB const blob)
get next instance from linked-list of Sq3BlobS type

◆ pysq3lite_Sq3BlobC_Prev()

static OT_ProcRet pysq3lite_Sq3BlobC_Prev ( Sq3BlobC_ARGS )
static

Python: Sq3BlobC blob.Prev() C-API
get previous instance from linked-list of Sq3BlobS type

Definition at line 184 of file Sq3BlobC_py.c.

184 {
188 SQ3_BLOB retVal = Sq3BlobPrev (hdl);
189 OT_retObj_SET_BLOB(retVal);
190 goto end;
191 error:
193 end:
195}
#define Prev_doc
static SQ3_BLOB Sq3BlobPrev(SQ3_BLOB const blob)
get previous instance from linked-list of Sq3BlobS type