Results 1 to 40 of 73

Thread: how to Fast Call cdecl api like sqlite3.dll?

Threaded View

  1. #36

    Thread Starter
    PowerPoster
    Join Date
    Jan 2020
    Posts
    5,541

    Re: hao to call Sqlite3.dll with cdecl?

    MAYBE NOT USE JMP,USE call eax?
    my friend write asm code,it's run successful,but i lost the code,He can't be reached now。

    ' 9: FF D0 call eax
    Code:
      push 1
      push 2
      call function
      add esp, 8 
    
    like this?
    
    function myAdd(byval a as long ,byval b as long) as long
      push b
      push a
      call function (cdecl api ptr)
      add esp, 8 
    end function
    Last edited by xiaoyao; Dec 5th, 2020 at 07:16 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width