Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents  
 
GetMp3Tag2Data method 
 
Remarks 
 
Retrieves the full binary contents of the ID3V2 tag for a MP3 sound. The overall tag size can be obtained through a call to the GetMp3Tag2Size method. 
 
Details about the use of Tags and a sample of use of this method can be found on the How to retrieve Tag information section. 
 
 
Syntax 
 
[Visual Basic] 
control.GetMp3Tag2Data
nPlayer as Integer
pBuffer as Variant, 
nBufferLen as Long 
 
[C++] 
short control.GetMp3Tag2Data
short nPlayer, 
const VARIANT FAR& pBuffer
long nBufferLen 
);
 
 
Parameter
Description
 
 
nPlayer
Number representing the zero-based index of the involved player
pBuffer
Variant parameter containing the pointer to a pre-allocated buffer that will receive the ID3V2 data. Allocating/freeing this buffer is responsibility of the container.
nBufferLen
Length in bytes of the buffer
 
 
Return value 
 
Value
Meaning
 
 
Negative value
An error occurred (see the LastError property for further error details)
enumErrorCodes.NOERROR (0)
The call was successful
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2001-2008 MultiMedia Soft 
Return to Table of contents