There is music, maestro!

BASS ships 64-bit DLL's and LIB's compatible with VS2010. Download at:
www.un4seen.com/stuff/bass24-x64.zipTo start the music simply do:
HMUSIC TheMod;
BASS_Init(-1,44100,0,0,NULL);
char xmfile[] = "CRACKINT.MOD";
TheMod = BASS_MusicLoad(FALSE,xmfile,0,0,BASS_MUSIC_RAMPS,1);
BASS_ChannelPlay(TheMod,FALSE);
and at exit:
BASS_MusicFree(TheMod);
BASS_Free();
Include the bass.h in your C code and link the bass.lib.
To Hellfire: I do my demo in 64-bit because my host operating system is 64-bit. I really do not want to reinstall Visual Studio, Cuda toolkit, etc... You are right that I don't need more than 2 Gb for my little demo!