Browse Source

+ bug report 1808 test

pierre 23 years ago
parent
commit
db5fa9b29d
1 changed files with 14 additions and 0 deletions
  1. 14 0
      tests/webtbs/tw1808.pp

+ 14 - 0
tests/webtbs/tw1808.pp

@@ -0,0 +1,14 @@
+{$ifdef win32}
+uses
+  windows;
+{$endif win32}
+
+var
+  x : DWORD;
+begin
+{$ifdef win32}
+  x:=CommDlgExtendedError;
+{$else not win32}
+  x:=0;
+{$endif win32}
+end.