File: playwavepackage.pas

package info (click to toggle)
udm 1.0.0.352-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,076 kB
  • sloc: pascal: 72,496; ansic: 6,892; awk: 880; makefile: 768; sh: 493; perl: 34; python: 22; tcl: 18
file content (22 lines) | stat: -rwxr-xr-x 471 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ This file was automatically created by Lazarus. Do not edit!
  This source is only used to compile and install the package.
 }

unit playwavepackage;

interface

uses
  uplaysound, aboutplaysound, LazarusPackageIntf;

implementation

procedure Register;
begin
  RegisterUnit('uplaysound', @uplaysound.Register);
  RegisterUnit('aboutplaysound', @aboutplaysound.Register);
end;

initialization
  RegisterPackage('playwavepackage', @Register);
end.