Skip to main content
Module

x/win32/examples/MessageBox.ts

Wraps some of the most common Win32 API calls using FFI to make them accessible to Deno.
Latest
File
import * as win32 from "../mod.ts";
const msgboxID = win32.MessageBox( new Deno.UnsafePointer(0n), "Hello World\n你好,世界\nこんにちは世界\nBonjour le monde\nمرحبا بالعالم", "Deno FFI", win32.MB_YESNO | win32.MB_ICONWARNING,);
switch (msgboxID) { case win32.IDYES: console.log("yes"); break; case win32.IDNO: console.log("no"); break; default: console.error("unreachable");}