Skip to main content
Module

x/win32/mod.ts>MB_APPLMODAL

Wraps some of the most common Win32 API calls using FFI to make them accessible to Deno.
Latest
variable MB_APPLMODAL
import { MB_APPLMODAL } from "https://deno.land/x/win32@0.1.1/mod.ts";

The user must respond to the message box before continuing work in the window identified by the hWnd parameter. However, the user can move to the windows of other threads and work in those windows.

Depending on the hierarchy of windows in the application, the user may be able to move to other windows within the thread. All child windows of the parent of the message box are automatically disabled, but pop-up windows are not.

MB_APPLMODAL is the default if neither MB_SYSTEMMODAL nor MB_TASKMODAL is specified.