Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lazarus / usr / share / lazarus / 1.6 / components / vlc / reglazvlc.pas
Size: Mime:
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.