Skip to main content
added 71 characters in body
Source Link

I open exe file (running on Windows) in Ida , and saw a function (for example sub_ABC) that I want to export , so I can call this function from c# code.

  1. How can I export function that I Know the name that Ida gave to it , (by the offset) ?

  2. Do I need to see how the arguments pass to this function (stack/register) so I will know the calling convention when I call it via c# , yes? Ida can tell me what is the calling convention of spesific function?

I open exe file (running on Windows) in Ida , and saw a function (for example sub_ABC) that I want to export , so I can call this function from c# code.

  1. How can I export function that I Know the name that Ida gave to it , (by the offset)

  2. Do I need to see how the arguments pass to this function (stack/register) so I will know the calling convention when I call it via c# , yes?

I open exe file (running on Windows) in Ida , and saw a function (for example sub_ABC) that I want to export , so I can call this function from c# code.

  1. How can I export function that I Know the name that Ida gave to it , (by the offset) ?

  2. Do I need to see how the arguments pass to this function (stack/register) so I will know the calling convention when I call it via c# , yes? Ida can tell me what is the calling convention of spesific function?

Source Link

How to export function from exe file?

I open exe file (running on Windows) in Ida , and saw a function (for example sub_ABC) that I want to export , so I can call this function from c# code.

  1. How can I export function that I Know the name that Ida gave to it , (by the offset)

  2. Do I need to see how the arguments pass to this function (stack/register) so I will know the calling convention when I call it via c# , yes?