mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-27 23:03:44 +02:00
27 lines
351 B
ObjectPascal
27 lines
351 B
ObjectPascal
unit reglazvlc;
|
|
|
|
{$IF FPC_FULLVERSION<20701}
|
|
{$ERROR needs at least FPC 2.7.1}
|
|
{$ENDIF}
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils, vlc, lclvlc, lresources;
|
|
|
|
Procedure register;
|
|
|
|
implementation
|
|
|
|
Procedure register;
|
|
begin
|
|
RegisterComponents('Multimedia',[TLCLVLCPlayer,TVLCMediaListPlayer]);
|
|
end;
|
|
|
|
initialization
|
|
{$i lazvlc.res}
|
|
end.
|
|
|