added missing file

git-svn-id: trunk@9965 -
This commit is contained in:
mattias 2006-09-22 12:15:00 +00:00
parent 2b9f0c805b
commit 9a39861209
2 changed files with 35 additions and 0 deletions

1
.gitattributes vendored
View File

@ -186,6 +186,7 @@ components/images/lazpnm.pas svneol=native#text/pascal
components/images/laztga.pas svneol=native#text/pascal
components/images/lazxpm.pas svneol=native#text/pascal
components/images/readme.txt svneol=native#text/plain
components/images/registerimg4laz.pas svneol=native#text/plain
components/interbase/README.txt svneol=native#text/plain
components/interbase/interbaselaz.lpk svneol=native#text/pascal
components/interbase/interbaselaz.pas svneol=native#text/pascal

View File

@ -0,0 +1,34 @@
{ Copyright (C) 2003 Mattias Gaertner
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Library General Public License as published by
the Free Software Foundation; either version 2 of the License, or (at your
option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License
for more details.
You should have received a copy of the GNU Library General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
}
unit RegisterImg4Laz;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, LazPNM, LazJPG, LazTGA;
implementation
initialization
LazJPG.Register;
LazPNM.Register;
LazTGA.Register;
end.