Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,5 @@
|
|||
if OpenLibrary(0, "USER32.DLL")
|
||||
*MessageBox = GetFunction(0, "MessageBoxA")
|
||||
CallFunctionFast(*MessageBox, 0, "Body", "Title", 0)
|
||||
CloseLibrary(0)
|
||||
endif
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
Prototype.l ProtoMessageBoxW(Window.l, Body.p-unicode, Title.p-unicode, Flags.l = 0)
|
||||
|
||||
If OpenLibrary(0, "User32.dll")
|
||||
MsgBox.ProtoMessageBoxW = GetFunction(0, "MessageBoxW")
|
||||
MsgBox(0, "Hello", "World")
|
||||
CloseLibrary(0)
|
||||
EndIf
|
||||
Loading…
Add table
Add a link
Reference in a new issue