theKernel 10.0
Loading...
Searching...
No Matches
MkBufferStreamC_Misc_CS_API

MkBufferStreamC - various functions to create and destroy a MkBufferStreamSMore...

+ Collaboration diagram for MkBufferStreamC_Misc_CS_API:

Functions

MkBufferStreamC csmkkernel.MkBufferStreamC.Copy (MkBufferStreamC src)
  C#: MkBufferStreamC bus.Copy(MkBufferStreamC src) C-API
copy the MkBufferStreamC from src to bus
 
MkBufferStreamC csmkkernel.MkBufferStreamC.Reset ()
  C#: MkBufferStreamC bus.Reset() C-API
reset a MkBufferStreamC to the length zero …
 
MkBufferListC csmkkernel.MkBufferStreamC.ToBFL ()
  C#: MkBufferListC bus.ToBFL() C-API
convert the bus into a MkBufferListC
 
void csmkkernel.MkBufferStreamC.PosToStart ()
  C#: bus.PosToStart() C-API
set the current-access-position to the start of MkBufferStreamC
 
void csmkkernel.MkBufferStreamC.ResetFull ()
  C#: bus.ResetFull() C-API
reset a MkBufferStreamC to the length zero and free allocated storage…
 

Detailed Description

MkBufferStreamC - various functions to create and destroy a MkBufferStreamS

Function Documentation

◆ Copy()

MkBufferStreamC csmkkernel.MkBufferStreamC.Copy ( MkBufferStreamC src)
inline

C#: MkBufferStreamC bus.Copy(MkBufferStreamC src) C-API
copy the MkBufferStreamC from src to bus

Definition at line 155 of file MkBufferStreamC.cs.

155 {
156 IntPtr src_hdl = MkBufferStreamC.getOBJ("MkBufferStreamC",src);
157 IntPtr __retVal__L = Mk.MkBufferStreamCopy(mkrt, hdl, src_hdl);
158 return MkBufferStreamC.MkBufferStreamC_ObjNew(__retVal__L);
159 }
csmkkernel.MkKernel Mk

◆ PosToStart()

void csmkkernel.MkBufferStreamC.PosToStart ( )
inline

C#: bus.PosToStart() C-API
set the current-access-position to the start of MkBufferStreamC

Definition at line 178 of file MkBufferStreamC.cs.

178 {
179 Mk.MkBufferStreamPosToStart(mkrt, hdl);
180 }

◆ Reset()

MkBufferStreamC csmkkernel.MkBufferStreamC.Reset ( )
inline

C#: MkBufferStreamC bus.Reset() C-API
reset a MkBufferStreamC to the length zero …

Definition at line 162 of file MkBufferStreamC.cs.

162 {
163 IntPtr __retVal__L = Mk.MkBufferStreamReset(mkrt, hdl);
164 return MkBufferStreamC.MkBufferStreamC_ObjNew(__retVal__L);
165 }

◆ ResetFull()

void csmkkernel.MkBufferStreamC.ResetFull ( )
inline

C#: bus.ResetFull() C-API
reset a MkBufferStreamC to the length zero and free allocated storage…

Definition at line 183 of file MkBufferStreamC.cs.

183 {
184 Mk.MkBufferStreamResetFull(mkrt, hdl);
185 }

◆ ToBFL()

MkBufferListC csmkkernel.MkBufferStreamC.ToBFL ( )
inline

C#: MkBufferListC bus.ToBFL() C-API
convert the bus into a MkBufferListC

Definition at line 168 of file MkBufferStreamC.cs.

168 {
169 IntPtr __retVal__L = Mk.MkBufferStreamToBFL(mkrt, hdl);
170 return MkBufferListC.MkBufferListC_ObjNew(__retVal__L);
171 }