api 和 abi的区别
156down vote |
API: Application Program InterfaceThis is the set of public types/variables/functions that you expose from your application/library. In C/C++ this is what you expose in the header files that you ship with the application. ABI: Application Binary InterfaceThis is how the compiler builds an application.
|