Browse Source

* added diskfontname

nils 23 years ago
parent
commit
e9705e961d
1 changed files with 10 additions and 1 deletions
  1. 10 1
      packages/extra/amunits/units/diskfont.pas

+ 10 - 1
packages/extra/amunits/units/diskfont.pas

@@ -2,7 +2,7 @@
     This file is part of the Free Pascal run time library.
     This file is part of the Free Pascal run time library.
 
 
     A file in Amiga system run time library.
     A file in Amiga system run time library.
-    Copyright (c) 1998 by Nils Sjoholm
+    Copyright (c) 1998-2002 by Nils Sjoholm
     member of the Amiga RTL development team.
     member of the Amiga RTL development team.
 
 
     See the file COPYING.FPC, included in this distribution,
     See the file COPYING.FPC, included in this distribution,
@@ -112,6 +112,9 @@ Type
         afh_NumEntries  : Word;
         afh_NumEntries  : Word;
     end;
     end;
 
 
+const
+    DISKFONTNAME : PChar = 'diskfont.library';
+
 VAR DiskfontBase : pLibrary;
 VAR DiskfontBase : pLibrary;
 
 
 FUNCTION AvailFonts(buffer : pCHAR; bufBytes : LONGINT; flags : LONGINT) : LONGINT;
 FUNCTION AvailFonts(buffer : pCHAR; bufBytes : LONGINT; flags : LONGINT) : LONGINT;
@@ -187,6 +190,12 @@ END;
 
 
 END. (* UNIT DISKFONT *)
 END. (* UNIT DISKFONT *)
 
 
+{
+  $Log$
+  Revision 1.2  2002-11-18 20:52:58  nils
+    * added diskfontname
 
 
+}
+