peter 23 ani în urmă
părinte
comite
eab3951304
1 a modificat fișierele cu 28 adăugiri și 0 ștergeri
  1. 28 0
      tests/webtbs/tw1696.pp

+ 28 - 0
tests/webtbs/tw1696.pp

@@ -0,0 +1,28 @@
+{ %version=1.1 }
+
+{$ifdef Win32}
+Uses Windows;
+Var Font:HFONT;
+Begin
+   { Windows unit does not support Widechar correct }
+   Font:=CreateFont(16, { Height Of Font }
+                    0,   { Width Of Font  }
+                    0,   { Angle Of Escapement }
+                    0,   { Orientation Angle   }
+                    FW_BOLD, { Font Weight }
+                    0,   { Italic }
+                    0,   { Underline }
+                    0,   { Strikeout }
+                    ANSI_CHARSET,
+                    OUT_TT_PRECIS,
+                    CLIP_DEFAULT_PRECIS,
+                    PROOF_QUALITY,
+                    FF_DONTCARE Or DEFAULT_PITCH,
+                    'Verdana');
+{$else}
+begin
+  Writeln('Win32 only');
+{$endif}
+End.
+
+