Linking against WinNLS
问题 What static library should I use to link against to use the NormalizeString() function? In contrast with most functions documented on MSDN, the static library required to use the function is not declared. I tried using the name derived from the DLL: normaliz.lib and it successfully linked, but then I get a pop-up at runtime saying Normalization.dll could not be found on my computer and the process is shut down. 回答1: As pointer out by Hans Passant, the correct import library is normaliz.lib .