theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3ValueC_Class_PY_API

Sq3ValueC - define the class … More...

+ Collaboration diagram for Sq3ValueC_Class_PY_API:

Functions

static OT_ProcRet pysq3lite_Sq3ValueC_HandleResolve (OtClass_ARGS)
  Python: [static] Sq3ValueC Sq3ValueC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a Sq3ValueC from netHdl or None if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet pysq3lite_Sq3ValueC_HandleGet (Sq3ValueC_ARGS)
 
static OT_ProcRet pysq3lite_Sq3ValueC_Next (Sq3ValueC_ARGS)
  Python: Sq3ValueC val.Next() C-API
get next instance from linked-list of Sq3ValueS type
 
static OT_ProcRet pysq3lite_Sq3ValueC_Prev (Sq3ValueC_ARGS)
  Python: Sq3ValueC val.Prev() C-API
get previous instance from linked-list of Sq3ValueS type
 
static OT_ProcRet pysq3lite_Sq3ValueC_Instances (OtClass_ARGS)
  Python: [static] Sq3ValueC Sq3ValueC.Instances() C-API
get head-instance from linked-list of Sq3ValueS type …
 
static OT_ProcRet pysq3lite_Sq3ValueC_GetNull (OtClass_ARGS)
  Python: [static] Sq3ValueC Sq3ValueC.GetNull() C-API
Null-Slot - return a Sq3ValueC typed NULL instance …
 

Detailed Description

Sq3ValueC - define the class …

Method definition

Function Documentation

◆ pysq3lite_Sq3ValueC_GetNull()

static OT_ProcRet pysq3lite_Sq3ValueC_GetNull ( OtClass_ARGS )
static

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

Definition at line 236 of file Sq3ValueC_py.c.

236 {
240 SQ3_VAL retVal = Sq3ValueGetNull ();
241 OT_retObj_SET_VAL(retVal);
242 goto end;
243 error:
245 end:
247}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_VAL(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
static SQ3_VAL Sq3ValueGetNull(void)
Null-Slot - return a Sq3ValueC typed NULL instance …
Struct to represent the data of the Sq3ValueC …

◆ pysq3lite_Sq3ValueC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet pysq3lite_Sq3ValueC_HandleGet ( Sq3ValueC_ARGS )
static

Definition at line 171 of file Sq3ValueC_py.c.

#define OT_ERROR_LNG_RETURN

◆ pysq3lite_Sq3ValueC_HandleResolve()

static OT_ProcRet pysq3lite_Sq3ValueC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 152 of file Sq3ValueC_py.c.

152 {
155 MK_HDL netHdl = 0;
158 SQ3_VAL retVal = Sq3ValueHandleResolve (netHdl);
159 OT_retObj_SET_VAL(retVal);
160 goto end;
161 error:
163 end:
165}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define Sq3ValueHandleResolve(...)
#define OT_CHECK_NIH(val)

◆ pysq3lite_Sq3ValueC_Instances()

static OT_ProcRet pysq3lite_Sq3ValueC_Instances ( OtClass_ARGS )
static

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

Definition at line 213 of file Sq3ValueC_py.c.

213 {
217 SQ3_VAL retVal = Sq3ValueInstances ();
218 OT_retObj_SET_VAL(retVal);
219 goto end;
220 error:
222 end:
224}
#define Instances_doc
#define Sq3ValueInstances()

◆ pysq3lite_Sq3ValueC_Next()

static OT_ProcRet pysq3lite_Sq3ValueC_Next ( Sq3ValueC_ARGS )
static

Python: Sq3ValueC val.Next() C-API
get next instance from linked-list of Sq3ValueS type

Definition at line 183 of file Sq3ValueC_py.c.

183 {
187 SQ3_VAL retVal = Sq3ValueNext (hdl);
188 OT_retObj_SET_VAL(retVal);
189 goto end;
190 error:
192 end:
194}
#define OT_SETUP_hdl
#define Next_doc
static SQ3_VAL Sq3ValueNext(SQ3_VAL const val)
get next instance from linked-list of Sq3ValueS type

◆ pysq3lite_Sq3ValueC_Prev()

static OT_ProcRet pysq3lite_Sq3ValueC_Prev ( Sq3ValueC_ARGS )
static

Python: Sq3ValueC val.Prev() C-API
get previous instance from linked-list of Sq3ValueS type

Definition at line 197 of file Sq3ValueC_py.c.

197 {
201 SQ3_VAL retVal = Sq3ValuePrev (hdl);
202 OT_retObj_SET_VAL(retVal);
203 goto end;
204 error:
206 end:
208}
#define Prev_doc
static SQ3_VAL Sq3ValuePrev(SQ3_VAL const val)
get previous instance from linked-list of Sq3ValueS type