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

Ansible warning on jinja2 braces on when -

Parsing a protocol message from Go by Java -

javascript - Replicate keyboard event with html button -