theSq3Lite 10.0 NHI1 - theKernel - theLink - theConfig - theSq3Lite - theCompiler - theBrain - theGuard - theLib - theATL
c - tcl - atl - cs - py - rb - jv - cc
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 239 of file Sq3ValueC_py.c.

239 {
243 SQ3_VAL retVal = Sq3ValueGetNull ();
244 OT_retObj_SET_VAL(retVal);
245 goto end;
246 error:
248 end:
250}
#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 174 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 155 of file Sq3ValueC_py.c.

155 {
158 MK_HDL netHdl = 0;
161 SQ3_VAL retVal = Sq3ValueHandleResolve (netHdl);
162 OT_retObj_SET_VAL(retVal);
163 goto end;
164 error:
166 end:
168}
#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 216 of file Sq3ValueC_py.c.

216 {
220 SQ3_VAL retVal = Sq3ValueInstances ();
221 OT_retObj_SET_VAL(retVal);
222 goto end;
223 error:
225 end:
227}
#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 186 of file Sq3ValueC_py.c.

186 {
190 SQ3_VAL retVal = Sq3ValueNext (hdl);
191 OT_retObj_SET_VAL(retVal);
192 goto end;
193 error:
195 end:
197}
#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 200 of file Sq3ValueC_py.c.

200 {
204 SQ3_VAL retVal = Sq3ValuePrev (hdl);
205 OT_retObj_SET_VAL(retVal);
206 goto end;
207 error:
209 end:
211}
#define Prev_doc
static SQ3_VAL Sq3ValuePrev(SQ3_VAL const val)
get previous instance from linked-list of Sq3ValueS type