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
Sq3LiteC_Class_PY_API

Sq3LiteC - define the class … More...

+ Collaboration diagram for Sq3LiteC_Class_PY_API:

Functions

static OT_ProcRet pysq3lite_Sq3LiteC_HandleResolve (OtClass_ARGS)
  Python: [static] Sq3LiteC Sq3LiteC.HandleResolve(netHdl:MK_HDL) C-API
Handle-Resolve-Slot - return a Sq3LiteC from netHdl or None if invalid…
 
MK_DEPRECATED static MK_UNUSED OT_ProcRet pysq3lite_Sq3LiteC_HandleGet (Sq3LiteC_ARGS)
 
static OT_ProcRet pysq3lite_Sq3LiteC_Next (Sq3LiteC_ARGS)
  Python: Sq3LiteC lite.Next() C-API
get next instance from linked-list of Sq3LiteS type
 
static OT_ProcRet pysq3lite_Sq3LiteC_Prev (Sq3LiteC_ARGS)
  Python: Sq3LiteC lite.Prev() C-API
get previous instance from linked-list of Sq3LiteS type
 
static OT_ProcRet pysq3lite_Sq3LiteC_Instances (OtClass_ARGS)
  Python: [static] Sq3LiteC Sq3LiteC.Instances() C-API
get head-instance from linked-list of Sq3LiteS type …
 
static OT_ProcRet pysq3lite_Sq3LiteC_GetNull (OtClass_ARGS)
  Python: [static] Sq3LiteC Sq3LiteC.GetNull() C-API
Null-Slot - return a Sq3LiteC typed NULL instance …
 

Detailed Description

Sq3LiteC - define the class …

Method definition

Function Documentation

◆ pysq3lite_Sq3LiteC_GetNull()

static OT_ProcRet pysq3lite_Sq3LiteC_GetNull ( OtClass_ARGS )
static

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

Definition at line 267 of file Sq3LiteC_py.c.

267 {
271 SQ3_LITE retVal = Sq3LiteGetNull ();
272 OT_retObj_SET_LITE(retVal);
273 goto end;
274 error:
276 end:
278}
#define OT_SETUP_NOARG(d)
#define OT_retObj_SET_Error
#define OT_retObj_RETURN
#define OT_CHECK_NOARGS
#define OT_retObj_SET_LITE(nat)
#define GetNull_doc
#define OT_SETUP_hdl_static
Definition Sq3LiteC_py.c:31
static SQ3_LITE Sq3LiteGetNull(void)
Null-Slot - return a Sq3LiteC typed NULL instance …
Struct to represent the data of the Sq3LiteC …

◆ pysq3lite_Sq3LiteC_HandleGet()

MK_DEPRECATED static MK_UNUSED OT_ProcRet pysq3lite_Sq3LiteC_HandleGet ( Sq3LiteC_ARGS )
static

Definition at line 202 of file Sq3LiteC_py.c.

#define OT_ERROR_LNG_RETURN

◆ pysq3lite_Sq3LiteC_HandleResolve()

static OT_ProcRet pysq3lite_Sq3LiteC_HandleResolve ( OtClass_ARGS )
static

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

Definition at line 183 of file Sq3LiteC_py.c.

183 {
186 MK_HDL netHdl = 0;
189 SQ3_LITE retVal = Sq3LiteHandleResolve (netHdl);
190 OT_retObj_SET_LITE(retVal);
191 goto end;
192 error:
194 end:
196}
#define OT_SETUP_ONEARG(d)
#define OT_CHECK_REQUIRED(val)
#define HandleResolve_doc
int32_t MK_HDL
#define Sq3LiteHandleResolve(...)
#define OT_CHECK_NIH(val)

◆ pysq3lite_Sq3LiteC_Instances()

static OT_ProcRet pysq3lite_Sq3LiteC_Instances ( OtClass_ARGS )
static

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

Definition at line 244 of file Sq3LiteC_py.c.

244 {
248 SQ3_LITE retVal = Sq3LiteInstances ();
249 OT_retObj_SET_LITE(retVal);
250 goto end;
251 error:
253 end:
255}
#define Instances_doc
#define Sq3LiteInstances()

◆ pysq3lite_Sq3LiteC_Next()

static OT_ProcRet pysq3lite_Sq3LiteC_Next ( Sq3LiteC_ARGS )
static

Python: Sq3LiteC lite.Next() C-API
get next instance from linked-list of Sq3LiteS type

Definition at line 214 of file Sq3LiteC_py.c.

214 {
218 SQ3_LITE retVal = Sq3LiteNext (hdl);
219 OT_retObj_SET_LITE(retVal);
220 goto end;
221 error:
223 end:
225}
#define OT_SETUP_hdl
Definition Sq3LiteC_py.c:26
#define Next_doc
static SQ3_LITE Sq3LiteNext(SQ3_LITE const lite)
get next instance from linked-list of Sq3LiteS type

◆ pysq3lite_Sq3LiteC_Prev()

static OT_ProcRet pysq3lite_Sq3LiteC_Prev ( Sq3LiteC_ARGS )
static

Python: Sq3LiteC lite.Prev() C-API
get previous instance from linked-list of Sq3LiteS type

Definition at line 228 of file Sq3LiteC_py.c.

228 {
232 SQ3_LITE retVal = Sq3LitePrev (hdl);
233 OT_retObj_SET_LITE(retVal);
234 goto end;
235 error:
237 end:
239}
#define Prev_doc
static SQ3_LITE Sq3LitePrev(SQ3_LITE const lite)
get previous instance from linked-list of Sq3LiteS type