RosettaCodeData/Task/Call-a-function-in-a-shared-library/Lua/call-a-function-in-a-shared-library.lua

6 lines
236 B
Lua
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
alien = require("alien")
msgbox = alien.User32.MessageBoxA
msgbox:types({ ret='long', abi='stdcall', 'long', 'string', 'string', 'long' })
retval = msgbox(0, 'Please press Yes, No or Cancel', 'The Title', 3)
print(retval) --> 6, 7 or 2