mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 11:54:52 +01:00
15 lines
190 B
ObjectPascal
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.
|