KwangYul Seo wrote: > error at first. However, after I included a unfrozen API "nsPresContext.h", > it in turn included old string APIs and caused linkage errors. What library > do I need to include to avoid these link errors? I tried string_s.lib, but > it caused duplicate linkage errors.
It is not possible to mix internal linkage strings and frozen linkage strings. You might be able to hack the nsPresContext.h header to avoid including the internal string headers, and ifdef out the one method (UpdateCharSet) that uses them, but you're really fighting a losing battle. --BDS _______________________________________________ dev-embedding mailing list [email protected] https://lists.mozilla.org/listinfo/dev-embedding
