I recently found an old game in which the soundtrack is read from an audio cd. I would like to redirect this via a proxy dll (winmm.dll) to read the soundtrack from certain mp3 files, possibly via FMODEx. So far I have been unsuccessful in every attempt.
The game calls mciSendCommandA() to request the specified audio track from the disc.
I have tried hooking this function, but I was unable to make sense of any of the messages being sent. Unfortunately it is not using mciSendStringA(), so I can't just modify the string.
Is there another (possibly simpler) way to do this? Or am I biting off more than I can chew?