List ire Solution * 1 Error A 99 Warnings © 0 of 241 Messages Build + IntelliSense 7 Code Description A C4996 'wesncpy": This function or variable may be unsafe. Consider using wesncpy_sinstead. To disable deprecation, use _CRT_SECURE_NO_WARN A C4005 'SIZE T MAX: macro redefinition A C4996 *wescpy: This function or variable may be unsafe. Consider using wescpy_s instead. To disable deprecation, use_CRT_SECURE NO_WARNING A C4005 _AfxGetDIgCtrIlD': macro redefinition A C4996 'wtomb': This function or variable may be unsafe. Consider using wetomb_s instead. To disable deprecation, use _CRT, SECURE NO_WARNING LNK1104 cannot open file .........\Build\Win32\Unicode\Release\BIN\CMNSHR32.dIl' r List Find Symbol Results Output
时间: 2024-04-29 21:21:59 浏览: 79
It seems that you are encountering some errors and warnings during the build process of your project. Here are some possible solutions to the errors and warnings you mentioned:
1. C4996, C4005 warning: These warnings indicate that some functions or variables you are using may be unsafe. You can consider using the safer versions of these functions or variables, such as "wesncpy_s" instead of "wesncpy". To disable these warnings, you can use the "_CRT_SECURE_NO_WARNINGS" preprocessor definition.
2. LNK1104 error: This error usually means that the linker cannot find a particular file that it needs to link your project. In this case, it cannot find the "CMNSHR32.dIl" file. You may need to check your project settings and make sure that the file is included in the correct path.
3. Other warnings: The other warnings you mentioned, such as the macro redefinition warnings, may be caused by conflicting header files or preprocessor definitions. You may need to check your project settings and make sure that there are no conflicting definitions or includes.
Overall, it's important to carefully review the error and warning messages and try to understand the root cause of the issue. You may also need to consult your project documentation or seek help from other developers to resolve the issue.
阅读全文