Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
RecordedSound.GetMemoryPtr method 
 
Remarks 
 
If sound data resulting from a recording session has been stored in memory, this method will return the memory address (pointer) of the buffer containing sound data. 
 
The actual size of the memory buffer can be retrieved using the RecordedSound.GetMemorySize method. 
 
For further details about recorded sound methods refer to the RecordedSound class section. 
For further details see the How to perform a recording session section. 
 
 
Syntax 
 
[Visual Basic] 
Public Function GetMemoryPtr
) as Int32
 
[C#] 
public Int32 GetMemoryPtr
);
 
[C++] 
public: Int32 GetMemoryPtr
);
 
 
Return value 
 
Value
Meaning
 
 
Negative value
An error occurred. Check the LastError property value in order to see the last error.
> 0
The buffer's memory address
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents