MessageBox
Call MessageBoxW from user32.dll via C module.
use C
var user32 = C.load('user32.dll')
var MsgBox = user32.def('MessageBoxW',
'int', ['ptr', 'wstr', 'wstr', 'uint'])
MsgBox(null, 'Hello', 'Hi', 0)Last updated
Was this helpful?
Call MessageBoxW from user32.dll via C module.
use C
var user32 = C.load('user32.dll')
var MsgBox = user32.def('MessageBoxW',
'int', ['ptr', 'wstr', 'wstr', 'uint'])
MsgBox(null, 'Hello', 'Hi', 0)Last updated
Was this helpful?
Was this helpful?