EnglishРусский  

Ads

Perfect Automation tool
All-In-One: Script editor, Launcher, Scheduler, Keyboard & Mouse Recorder. Try now!

CreateInstall
Freeware and commercial installers.

Cell Phone Batteries
Batteries Plus offers batteries for laptop, camcorder, cell phone, camera.

Gentee needs your help!
How to advertise with us
 
laptop battery

buf.insert

Data insertion. The method inserts one buf object into another.

method buf buf.insert (
   uint offset,
   buf value
)

Parameters

offset The offset where data will be inserted. If the offset is greater than the size, data is added to the end to the buffer.
value The buf object with the data to be inserted.

Return value

Returns the object which method has been called.


buf.insert

The method inserts one memory data into the buffer.

method buf buf.insert (
   uint offset,
   uint ptr,
   uint size
)

Parameters

offset The offset where data will be inserted. If the offset is greater than the size, data is added to the end to the buffer.
ptr The pointer to the memory data to be inserted.
size The size of the data to be inserted.

Related links

Source

Edit