Code: Alles auswählen
Import ""
PB_WindowEvent()
PB_WaitWindowEvent2(value)
EndImport
a1 = @PB_WindowEvent()
Debug "WaitWindowEvent : 0x" + Hex(@PB_WaitWindowEvent2())
Debug "WindowEvent : "
If ExamineAssembly(a1, a1+8)
While NextInstruction()
Debug InstructionString()
Wend
EndIf
End
WaitWindowEvent()
Code: Alles auswählen
WaitWindowEvent : 0x402997
WindowEvent :
push 0x0
call dword 0x402997
ret
Code: Alles auswählen
_PB_WindowEvent@0:
[00000000] 6A00 push 0
[00000002] E800000000 call _PB_WaitWindowEvent2@4
[00000007] C3 ret