fpc/tests/webtbs/tw4043.pp
oro06 feb8de2d67 *arm-wince wince added to win32 tests
git-svn-id: trunk@2615 -
2006-02-17 07:38:55 +00:00

15 lines
196 B
ObjectPascal

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