I have been trapped in following situation when writing a shared library for a server.
To make it easy to understand:
- let's call the server framework fwA
- the shared library written by me called libB
- different versions of the library linked both by fwA and libB named as libC1 and libC2
And fwA loads libB by dllopen
Following is my question: There is a data structure (DS1) is defined in libC, however, in libC1 and libC2 the data structure is slightly different.
How do compiler/linker/program determine which version of the data structure they would use?