source: CoolAudio/CoolAudioPackage.pas

Last change on this file was 569, checked in by chronos, 8 weeks ago
  • Modified: Removed U prefix from CoolAudio unit names.
File size: 541 bytes
Line 
1{ This file was automatically created by Lazarus. Do not edit!
2 This source is only used to compile and install the package.
3 }
4
5unit CoolAudioPackage;
6
7{$warn 5023 off : no warning about unused units}
8interface
9
10uses
11 CoolAudio, Playlist, AudioSystem, AudioSystemDSP, AudioSystemFMOD,
12 AudioSystemMAD, AudioSystemWindows, AudioSystemMPlayer, WavFile,
13 LazarusPackageIntf;
14
15implementation
16
17procedure Register;
18begin
19 RegisterUnit('CoolAudio', @CoolAudio.Register);
20end;
21
22initialization
23 RegisterPackage('CoolAudio', @Register);
24end.
Note: See TracBrowser for help on using the repository browser.