Skip to content

Instantly share code, notes, and snippets.

@pragdave
Last active December 15, 2015 21:09
Show Gist options
  • Save pragdave/5323282 to your computer and use it in GitHub Desktop.
Save pragdave/5323282 to your computer and use it in GitHub Desktop.
require 'fiddle'
include Fiddle
user32 = DL.dlopen("user32.dll")
msgbox = Fiddle::Function.new(user32['MessageBoxA'],
[TYPE_LONG, TYPE_VOIDP, TYPE_VOIDP, TYPE_INT],
TYPE_INT)
MB_OKCANCEL = 1
msgbox.call(0, "OK?", "Please Confirm", MB_OKCANCEL)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment