Browse Source

* Forgot to add

git-svn-id: trunk@37867 -
michael 7 years ago
parent
commit
580979ed1c
2 changed files with 33 additions and 0 deletions
  1. 1 0
      .gitattributes
  2. 32 0
      packages/fcl-image/src/freetypehdyn.pp

+ 1 - 0
.gitattributes

@@ -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

+ 32 - 0
packages/fcl-image/src/freetypehdyn.pp

@@ -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.