home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_GEN / TVGRAPH.ZIP / EUROPEAN.DOC < prev    next >
Text File  |  1993-12-26  |  1KB  |  34 lines

  1. file European.Doc
  2.  
  3. Totally Experimental for European users.
  4.  
  5. Version 1.5 of TVGraphic includes 8x14 pixel fonts matching the
  6. DOS code pages for Nordic and MultiLingual(Latin I). In Europe the
  7. DOS terminology may be different from US. So try this:
  8.   Nordic = Scandinavian
  9.   Multilingual = most European languages derived from Latin
  10.  
  11. Font file names:
  12.    NordFont.obj, LatnFont.obj
  13.  
  14. To Use:
  15.   Declare a procedure using the names as shown below.
  16.   Link the desired font file to your program with $L compiler directive.
  17.   Assign a pointer to the procedure/font using the @ operator.
  18.   Use this pointer in a call to SetEurofont;
  19.  
  20.       procedure Nordic_font; external; {just to hold the data, NEVER CALL}
  21.       {$L NordFont.obj}
  22.  
  23.      (* OR
  24.       procedure Latin_font; external; {just to hold the data, NEVER CALL}
  25.       {$L LatnFont.obj} *)
  26.  
  27.       SetEurofont(@Nordic_font);    {call once at start of program}
  28.            {only the characters above #127 are affected}
  29.  
  30.  
  31.  
  32. Have fun.
  33. If anyone finds this useful, please leave a message on CompuServe.
  34.