Saved Bookmarks
| 1. |
What is Application Binary Interface? |
|
Answer» In the field of computer software, ABI stands for Application Binary Interface. It's primarily an interface between two binary program modules, one of which is a library or system facility, and the other is a user program. In essence, ABI deals with the implementation details of programs, i.e., what the code turns into after it has been compiled. API covers calling convention, data types, alignment, size, as well as how an application should handle system calls to the operating system. |
|