Remarks
Occurs at the end of a sound's loading session. The loading session is started through a previous call to one between LoadSound, LoadSoundEncrypted, LoadSoundFromClipboard, LoadSoundFromEditingSession, LoadSoundFromMemory, LoadSoundFromRawFile, LoadSoundFromRawMemory, LoadSoundFromRecordingSession methods.
Syntax
[Visual Basic]
SoundLoadingDone (
ByVal bResult as enumBoolean
)
|
|
[C++]
void SoundLoadingDone (
long bResult
);
|
|
Parameter
|
Description
|
|
|
bResult
|
Boolean value that specifies if the loading session was completed successfully.
Supported values are the following:
Mnemonic Value
|
Numeric value
|
Meaning
|
BOOL_FALSE
|
0
|
An error occurred, check the LastError property value in order to see the error code
|
BOOL_TRUE
|
1
|
The loading session was completed successfully
|
|
|