theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3BlobC_Class_CS_API

Sq3BlobC - define the class … More...

+ Collaboration diagram for Sq3BlobC_Class_CS_API:

Functions

new static Sq3BlobC cssq3lite.Sq3BlobC.HandleResolve (Int32 netHdl)
  C#: [static] Sq3BlobC Sq3BlobC.HandleResolve(Int32 netHdl) C-API
Handle-Resolve-Slot - return a Sq3BlobC from netHdl or null if invalid…
 
new Sq3BlobC cssq3lite.Sq3BlobC.Next ()
  C#: Sq3BlobC blob.Next() C-API
get next instance from linked-list of Sq3BlobS type
 
new Sq3BlobC cssq3lite.Sq3BlobC.Prev ()
  C#: Sq3BlobC blob.Prev() C-API
get previous instance from linked-list of Sq3BlobS type
 
new static Sq3BlobC cssq3lite.Sq3BlobC.Instances ()
  C#: [static] Sq3BlobC Sq3BlobC.Instances() C-API
get head-instance from linked-list of Sq3BlobS type …
 
new static Sq3BlobC cssq3lite.Sq3BlobC.GetNull ()
  C#: [static] Sq3BlobC Sq3BlobC.GetNull() C-API
Null-Slot - return a Sq3BlobC typed NULL instance …
 

Detailed Description

Sq3BlobC - define the class …

Function Documentation

◆ GetNull()

new static Sq3BlobC cssq3lite.Sq3BlobC.GetNull ( )
inlinestatic

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

Definition at line 139 of file Sq3BlobC_cs.cs.

139 {
140 IntPtr __retVal__L = Sq3.Sq3BlobGetNull();
141 return Sq3BlobC.Sq3BlobC_ObjNew(__retVal__L);
142 }

◆ HandleResolve()

new static Sq3BlobC cssq3lite.Sq3BlobC.HandleResolve ( Int32 netHdl)
inlinestatic

C#: [static] Sq3BlobC Sq3BlobC.HandleResolve(Int32 netHdl) C-API
Handle-Resolve-Slot - return a Sq3BlobC from netHdl or null if invalid…

Definition at line 85 of file Sq3BlobC_cs.cs.

85 {
86 IntPtr __retVal__L = Sq3.Sq3BlobHandleResolve(IntPtr.Zero, netHdl);
87 return Sq3BlobC.Sq3BlobC_ObjNew(__retVal__L);
88 }

◆ Instances()

new static Sq3BlobC cssq3lite.Sq3BlobC.Instances ( )
inlinestatic

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

Definition at line 121 of file Sq3BlobC_cs.cs.

121 {
122 IntPtr __retVal__L = Sq3.Sq3BlobInstances(IntPtr.Zero);
123 return Sq3BlobC.Sq3BlobC_ObjNew(__retVal__L);
124 }

◆ Next()

new Sq3BlobC cssq3lite.Sq3BlobC.Next ( )
inline

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

Definition at line 107 of file Sq3BlobC_cs.cs.

107 {
108 IntPtr __retVal__L = Sq3.Sq3BlobNext(hdl);
109 return Sq3BlobC.Sq3BlobC_ObjNew(__retVal__L);
110 }

◆ Prev()

new Sq3BlobC cssq3lite.Sq3BlobC.Prev ( )
inline

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

Definition at line 113 of file Sq3BlobC_cs.cs.

113 {
114 IntPtr __retVal__L = Sq3.Sq3BlobPrev(hdl);
115 return Sq3BlobC.Sq3BlobC_ObjNew(__retVal__L);
116 }