summaryrefslogtreecommitdiff
path: root/tests/webtbs/tw4043.pp
blob: 5ef8a022bc6ef806ad62d3a89e20de2307cfc8e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ %target=win32 }
{ %OPT=-Sew -vw }

uses
  windows;

var
  WindowHandle : HWND;

begin
  WindowHandle:=0;
  SetWindowLong(WindowHandle, GWL_STYLE, WS_POPUP or WS_CLIPCHILDREN);
  halt(0);
end.