mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-26 21:09:26 +02:00
* Forgot to add
git-svn-id: trunk@37867 -
This commit is contained in:
parent
90679c0ce7
commit
580979ed1c
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
packages/fcl-image/src/freetypehdyn.pp
Normal file
32
packages/fcl-image/src/freetypehdyn.pp
Normal 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.
|
Loading…
Reference in New Issue
Block a user