This repository has been archived on 2024-02-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MyPresenter1.0/PasLibVlc/FreePascal/PasLibVlcPlayer.pas
2015-02-08 16:52:18 -08:00

22 lines
441 B
ObjectPascal

{ This file was automatically created by Lazarus. Do not edit!
This source is only used to compile and install the package.
}
unit PasLibVlcPlayer;
interface
uses
PasLibVlcUnit, PasLibVlcPlayerUnit, LazarusPackageIntf;
implementation
procedure Register;
begin
RegisterUnit('PasLibVlcPlayerUnit', @PasLibVlcPlayerUnit.Register);
end;
initialization
RegisterPackage('PasLibVlcPlayer', @Register);
end.