Tagged Questions
15
votes
4answers
1k views
Creating Library with backward compatible ABI that uses Boost
I'm working on certain C++ library (or more framework). I want to make it backward
compatible with previous versions preserving not only API compatibility but also ABI (like the great job Qt does).
I ...
9
votes
5answers
5k views
What are the calling conventions for UNIX & Linux system calls on x86-64
Explains both UNIX (BSD flavor) & Linux system call conventions for x86-32:
http://www.int80h.org/bsdasm/#system-calls
...
3
votes
4answers
3k views
C Runtime objects, dll boundaries
What is the best way to design a C API for dlls which deals with the problem of passing "objects" which are C runtime dependent (FILE*, pointer returned by malloc, etc...). For example, if two dlls ...