aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes/UMusic.pas
diff options
context:
space:
mode:
Diffstat (limited to 'Game/Code/Classes/UMusic.pas')
-rw-r--r--Game/Code/Classes/UMusic.pas8
1 files changed, 5 insertions, 3 deletions
diff --git a/Game/Code/Classes/UMusic.pas b/Game/Code/Classes/UMusic.pas
index 7e1aa839..c2d616ec 100644
--- a/Game/Code/Classes/UMusic.pas
+++ b/Game/Code/Classes/UMusic.pas
@@ -88,11 +88,12 @@ type
TPCMStereoSample = array[0..1] of Smallint;
TPCMData = array[0..511] of TPCMStereoSample;
- hStream = Cardinal;
+ TAudioOutputStream = class
+ end;
TCustomSoundEntry = record
Filename : String;
- Handle : hStream;
+ Stream : TAudioOutputStream;
end;
type
@@ -149,7 +150,8 @@ type
procedure PlayShuffle;
procedure StopShuffle;
- function LoadSoundFromFile(var hStream: hStream; Name: string): boolean;
+ // TODO
+ //function LoadSoundFromFile(var stream: TAudioOutputStream; Name: string): boolean;
//Custom Sounds
function LoadCustomSound(const Filename: String): Cardinal;