qb64-include/noframe.bi

26 lines
950 B
Text
Raw Normal View History

2022-03-18 18:33:58 +01:00
Declare Dynamic Library "User32"
Function GetWindowLongA& (ByVal hWnd As _Offset, Byval nIndex As Long)
Function SetWindowLongA& (ByVal hWnd As _Offset, Byval nIndex As Long, Byval dwNewLong As Long)
Function SetWindowPos& (ByVal hWnd As _Offset, Byval hWndInsertAfter As Long, Byval x As Long, Byval y As Long, Byval cx As Long, Byval cy As Long, Byval wFlags As Long)
End Declare
Const GWL_STYLE = -16
Const WS_BORDER = &H800000
2022-07-19 14:51:33 +02:00
Const WS_CAPTION = &HC00000
Const WS_THICKFRAME = &H040000
Const WS_MINIMIZEBOX = &H020000
Const WS_MAXIMIZEBOX = &H010000
Const WS_SYSMENU = &H080000
2022-03-18 18:33:58 +01:00
Do: Loop Until _ScreenExists
2022-07-19 14:51:33 +02:00
Dim hwnd As _Offset
Dim winstyle As Long
Dim Style As Long
2022-03-18 18:33:58 +01:00
hwnd = _WindowHandle
winstyle = GetWindowLongA(hwnd, GWL_STYLE)
Style = (WS_CAPTION Or WS_THICKFRAME Or WS_MINIMIZEBOX Or WS_MAXIMIZEBOX Or WS_SYSMENU)
2022-07-19 14:51:33 +02:00
if Not SetWindowLongA&(hwnd, GWL_STYLE, winstyle And Not Style) Then
End If