Este código en un Smartphone con WM6, no suena la musica.
Code: Select all
FUNCTION SuenaWav()
sndPlaySound( CURDIR() + "\TEST.WAV", nOr( SND_ASYNC, SND_LOOP, SND_NOSTOP, SND_FILENAME ) )
RETURN .t.
HB_FUNC( SNDPLAYSOUND )
{
LPWSTR AnsiToWide( LPSTR );
LPWSTR pW = AnsiToWide( hb_parc( 1 ) );
hb_retnl( sndPlaySound( pW, hb_parni( 2 ) ) );
hb_xfree( pW );
}
Alguien sabe donde puede estar el problema.
Gracias.