* Forgot to add

git-svn-id: trunk@37867 -
This commit is contained in:
michael 2017-12-29 17:07:59 +00:00
parent 90679c0ce7
commit 580979ed1c
2 changed files with 33 additions and 0 deletions

1
.gitattributes vendored
View File

@ -2510,6 +2510,7 @@ packages/fcl-image/src/fpwritetiff.pas svneol=native#text/plain
packages/fcl-image/src/fpwritexpm.pp svneol=native#text/plain
packages/fcl-image/src/freetype.pp svneol=native#text/plain
packages/fcl-image/src/freetypeh.pp svneol=native#text/plain
packages/fcl-image/src/freetypehdyn.pp svneol=native#text/plain
packages/fcl-image/src/ftfont.pp svneol=native#text/plain
packages/fcl-image/src/libfreetype.inc svneol=native#text/plain
packages/fcl-image/src/pcxcomn.pas svneol=native#text/plain

View File

@ -0,0 +1,32 @@
{
This file is part of the Free Pascal run time library.
Copyright (c) 2003 by the Free Pascal development team
Basic canvas definitions.
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
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.
**********************************************************************}
{$mode objfpc}
unit freetypehdyn;
interface
uses sysutils, dynlibs;
{$DEFINE DYNAMIC}
{$i libfreetype.inc}
initialization
InitializeFreetype(FreeTypeDLL);
finalization
ReleaseFreetype;
end.