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;
