theSq3Lite 10.0
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 264 of file Sq3LiteC_py.c.

264 {
268 SQ3_LITE retVal = Sq3LiteGetNull ();
269 OT_retObj_SET_LITE(retVal);
270 goto end;
271 error:
273 end:
275}
#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:28
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 199 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 180 of file Sq3LiteC_py.c.

180 {
183 MK_HDL netHdl = 0;
186 SQ3_LITE retVal = Sq3LiteHandleResolve (netHdl);
187 OT_retObj_SET_LITE(retVal);
188 goto end;
189 error:
191 end:
193}
#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 241 of file Sq3LiteC_py.c.

241 {
245 SQ3_LITE retVal = Sq3LiteInstances ();
246 OT_retObj_SET_LITE(retVal);
247 goto end;
248 error:
250 end:
252}
#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 211 of file Sq3LiteC_py.c.

211 {
215 SQ3_LITE retVal = Sq3LiteNext (hdl);
216 OT_retObj_SET_LITE(retVal);
217 goto end;
218 error:
220 end:
222}
#define OT_SETUP_hdl
Definition Sq3LiteC_py.c:23
#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 225 of file Sq3LiteC_py.c.

225 {
229 SQ3_LITE retVal = Sq3LitePrev (hdl);
230 OT_retObj_SET_LITE(retVal);
231 goto end;
232 error:
234 end:
236}
#define Prev_doc
static SQ3_LITE Sq3LitePrev(SQ3_LITE const lite)
get previous instance from linked-list of Sq3LiteS type