c++ - DLLs using different SDKs -


are there potential issues if dlls use 1 version of windows sdk , other libraries use different version?

thanks, michael

yes. there potential issues. c++ not have standardized stable abi (application binary interface). so, move outside of functions c linkage @ mercy of compiler (and not known binary compatible between versions). if stick c functions, can expect compatibility.

the best rule of thumb is, though; compile all code the same compiler.


Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -