fpc/tests/webtbs/tw4043.pp
2005-06-15 22:03:24 +00:00

15 lines
190 B
ObjectPascal

{ %target=win32 }
{ %OPT=-Sew }
uses
windows;
var
WindowHandle : HWND;
begin
WindowHandle:=0;
SetWindowLong(WindowHandle, GWL_STYLE, WS_POPUP or WS_CLIPCHILDREN);
halt(0);
end.