|
Copyright © 2005-2008 MultiMedia Soft
Return to Table of contents
|
|
[Visual Basic]
Public Function CopyExportedWavToMemory (
nPlayerIndex as Int16,
pBuffer() as Byte,
nBufferLength as Int32
) as enumErrorCodes
|
|
[C#]
public enumErrorCodes CopyExportedWavToMemory (
Int16 nPlayerIndex,
byte[] pBuffer,
Int32 nBufferLength
);
|
|
[C++]
public: enumErrorCodes CopyExportedWavToMemory (
Int16 nPlayerIndex,
unsigned char __gc[] pBuffer,
Int32 nBufferLength
);
|
|
Parameter
|
Description
|
|
|
|
|
nPlayerIndex
|
Number representing the zero-based index of the involved player
|
|
pBuffer
|
Buffer where WAV memory file contents will be copied
|
|
nBufferLen
|
Length in bytes of the given buffer
|
|
Value
|
Meaning
|
|
|
|
|
Negative value
|
An error occurred (see the LastError property for further error details)
|
|
enumErrorCodes.NOERROR (0)
|
The method call was successful.
|