Difference between revisions of "ISInterface:GetTempBuffer"

From Lavish Software Wiki
Jump to navigation Jump to search
 
 
Line 1: Line 1:
 
 
===Syntax===
 
===Syntax===
 
+
*void *GetTempBuffer(unsigned long Size, void *CopyFrom=0)
 
== Purpose ==
 
== Purpose ==
 
+
To create a temporary buffer that will delete itself after the current data sequence is processed.
 
== Usage ==
 
== Usage ==
 
=== Parameters ===
 
=== Parameters ===
 
+
*unsigned long Size
 +
:'''[in]''' Size of the Buffer
 +
*void *CopyFrom
 +
:'''[in]''' Optional argument, will copy data from a given buffer
 
=== Return Value ===
 
=== Return Value ===
 
+
Returns the buffer that was created
 
== Examples ==
 
== Examples ==
  

Latest revision as of 20:51, 2 September 2005

Syntax

  • void *GetTempBuffer(unsigned long Size, void *CopyFrom=0)

Purpose

To create a temporary buffer that will delete itself after the current data sequence is processed.

Usage

Parameters

  • unsigned long Size
[in] Size of the Buffer
  • void *CopyFrom
[in] Optional argument, will copy data from a given buffer

Return Value

Returns the buffer that was created

Examples

See Also