fpc/tests/webtbs/tw4043.pp
paul e9770b180a tests: fixed SetWindowLong test
git-svn-id: trunk@14477 -
2009-12-25 11:42:06 +00:00

15 lines
239 B
ObjectPascal

{ %target=win32 }
uses
windows;
var
WindowHandle : HWND;
begin
WindowHandle:=0;
// the next code must compile but with a range check warning
SetWindowLong(WindowHandle, GWL_STYLE, WS_POPUP or WS_CLIPCHILDREN);
halt(0);
end.