Studying linker error messages to find the cause of the unresolved external: Character sets

2 · Raymond Chen · July 1, 2021, 3:03 p.m.
A customer was encountering an unresolved external linker error when trying to link a plug-in with a static library. // header.h #define UNICODE #define _UNICODE #include <windows.h> BOOL SetSessionName(LPCTSTR name); This header file is used both by the implementation: // implementation.cpp #include "pch.h" #include <header.h> The post Studying linker error messages to find the cause of the unresolved external: Character sets appeared first on The Old New Thing....