(I believe there are no declarations like that in your code, otherwise you'd already know; so this might or might not be helpful as a start).
Take a look at some declarations for some API calls I call directly from a VB (or VBA) project.
"user32" refers to user32.dll
----------------
Private Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, _
ByVal wParam As Long, ByVal lParam As Long) As Long
Public Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
Public Declare Function SetCursorPos Lib "user32" (ByVal x As Long, ByVal y As Long) As Long
Public Declare Sub mouse_event Lib "user32" (ByVal dwFlags As Long, ByVal dx As Long, ByVal dy As Long, ByVal cButtons As Long, ByVal dwExtraInfo As Long)
Public Const MOUSEEVENTF_LEFTDOWN = &H2
Public Const MOUSEEVENTF_LEFTUP = &H4
Public Const MOUSEEVENTF_RIGHTDOWN As Long = &H8
Public Const MOUSEEVENTF_RIGHTUP As Long = &H10
Thanks for the tip.
Do you know any source that can explain these types of libraries that are default on a windows machine? (we use Windows 7)
Also if you could point me to BigInt classes and/or any crypto libraries that can perform calcs with SECP256K1 that'd be awesome!
Thanks for the pointers!