mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-05-31 13:22:32 +02:00
15 lines
196 B
ObjectPascal
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.
|