Is compiler able to do a procedural integration of functions imported from dll?
Posted
by doc
on Stack Overflow
See other posts from Stack Overflow
or by doc
Published on 2010-05-10T01:30:03Z
Indexed on
2010/05/10
1:38 UTC
Read the original article
Hit count: 228
I know, that modern compilers can do procedural integration not only with functions defined inline, but also with functions residing in object files. But is this also true when you compile your program against shared library (especially dll)? Roughly speaking: will function code be copied into executable from dll, if that's desirable?
© Stack Overflow or respective owner