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
Post a Comment