vote up 0 vote down star

Ok, So I created a RC file:

Chipas RCDATA "chiptune.xm"

And compiled it to RES.
Added this RES, BASSMOD.pas and BASSMOD.dll to my project dir.

Now I need to play that chiptune from the resource. How can I do it?

I tried this, but it doesn't loads.

procedure play;
begin
 MyResource:=FindResource(HInstance, 'Chipas', RT_RCDATA);
 if MyResource=0 then
 begin
  showmessage('chiptune error');
  Exit;
 end;
 MyGlobal:=LoadResource(HInstance,MyResource);
 pResource:=LockResource(MyGlobal);
 ResSize:=SizeOfResource(HInstance,MyResource);
    BASSMOD_MusicFree;

    if BASSMOD_MusicLoad(false,pResource,0,0,BASS_UNICODE) then begin
      BASSMOD_MusicPlay;
    end
    else Error('Can"t play the file');


FreeResource(MyGlobal);
 end;
flag
And what error do you get? – Riho Dec 26 '08 at 21:33
Those win32 api functions you are using have ways to tell you what the problem is. Check if the returns values signal an error and use RaiseLastOSError (or others) to see what that error is. – Lars Truijens Dec 27 '08 at 15:45

1 Answer

vote up 1 vote down

One of the functions you are calling could signal an error. You need to make sure each function you call does not signal an error. See the documentation on how they signal an error and use functions like RaiseLastOSError to see what the error message is. That might help you figure out what the problem is.

Also use a resource editor to see if your executable does contain the resource and see what it's name or ID is.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.