warning C4819: The file contains a character that cannot be represented in the current code page

本文介绍了一种有效解决VC++编译过程中出现的C4819警告的方法,此警告通常源于文件中存在非Unicode字符。通过调整文件编码为Unicode (codepage 1200),可以避免数据丢失并确保调试过程顺利。

编译VC++程序的时候出现如下提示警告:

warning C4819: The file contains a character that cannot be represented in the current code page (936). Save the file in Unicode format to prevent data loss

因为只是一个warning,不影响正常编译,所以并没有引起大家多大的关注。我一开始的时候也是如此。但是后来出现的次数多了,发现这个警告和在程序Debug的时候
无法停在断点,刷刷刷就过去了根本无法进行Debug。而罪魁祸首就是这个warning,改正了这个warning就能进行Debug了。

下面讲述我是怎么消除这个警告的。

这个警告的意思是:在该文件中有一个或多个字符不是Unicode字符!要求把这个字符变成Unicode字符。

难题:在编译信息里并没有提示是哪个字符,或者是在哪一行里出现的该字符。查找起来非常的难,甚至是不可能的任务!

我在网络上找了好多资料都没有找到解决方法。因为大家都不注意这个不影响编译的警告。后来在一个国外的网站上找到了解决的方法。很简单,这个方法根本不需要知道具体是哪个字符在捣鬼!

解决方法:打开出现warning的文件,Ctrl+A全选,然后在文件菜单:file->advanced save options ,在弹出的选项中选择新的编码方式为:UNICODE codepage 1200 ,点击确定,问题就解决了。

该如何消失VS2022的如下错误提示: Severity Code Description Project File Line Suppression State Details Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 10 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 8 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 9 Error C2143 syntax error: missing ';' before '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 12 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 11 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 15 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 16 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 17 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 18 Error C2143 syntax error: missing ';' before '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 20 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 19 Error C2059 syntax error: '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 20 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 23 Error C2086 'int None': redefinition Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 23 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 24 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 25 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 26 Error C2143 syntax error: missing ';' before '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 28 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 27 Error C2059 syntax error: '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 28 Error C2059 syntax error: 'public' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 31 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 33 Error C2146 syntax error: missing ';' before identifier 'Show' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 33 Error C2059 syntax error: 'const' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 33 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 34 Error C2086 'int DialogResult': redefinition Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 34 Error C2146 syntax error: missing ';' before identifier 'Show' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 34 Error C2059 syntax error: 'const' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 34 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 35 Error C2086 'int DialogResult': redefinition Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 35 Error C2146 syntax error: missing ';' before identifier 'Show' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 35 Error C2059 syntax error: 'const' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 35 Error C2059 syntax error: 'private' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 37 Error C2065 'MessageBoxButtons': undeclared identifier Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 39 Error C2146 syntax error: missing ')' before identifier 'buttons' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 39 Error C2065 'MessageBoxIcon': undeclared identifier Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 40 Error C2146 syntax error: missing ')' before identifier 'icon' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 40 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 41 Error C2086 'int DialogResult': redefinition Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 41 Error C2146 syntax error: missing ';' before identifier 'ConvertResult' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 41 Error C2062 type 'int' unexpected Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 41 Error C2059 syntax error: '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 42 Error C2143 syntax error: missing ';' before '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 42 Error C2059 syntax error: '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 44 Error C2143 syntax error: missing ';' before '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 44 Error C2143 syntax error: missing ';' before '{' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 3 Error C2447 '{': missing function header (old-style formal list?) Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 3 Error C2059 syntax error: 'return' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 10 Error C2653 'MessageBoxButtons': is not a class or namespace name Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 10 Error C2653 'MessageBoxIcon': is not a class or namespace name Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 10 Error C2059 syntax error: '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 11 Error C2143 syntax error: missing ';' before '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 11 Error C2653 'MessageBoxW': is not a class or namespace name Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 14 Error C2143 syntax error: missing ';' before '{' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 14 Error C2447 '{': missing function header (old-style formal list?) Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 14 Error C2653 'MessageBoxW': is not a class or namespace name Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 19 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 19 Error C2086 'int DialogResult': redefinition Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 19 Error C2146 syntax error: missing ';' before identifier 'Show' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 19 Error C2143 syntax error: missing ';' before '{' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 19 Error C2447 '{': missing function header (old-style formal list?) Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 19 Error C2653 'MessageBoxW': is not a class or namespace name Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 26 Error C2374 'GetButtonsFlag': redefinition; multiple initialization Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 26 Error C2086 'UINT GetButtonsFlag': redefinition Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 26 Error C2065 'MessageBoxButtons': undeclared identifier Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 26 Error C2146 syntax error: missing ')' before identifier 'buttons' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 26 Error C2143 syntax error: missing ';' before '{' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 26 Error C2447 '{': missing function header (old-style formal list?) Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 26 Error C2653 'MessageBoxW': is not a class or namespace name Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 42 Error C2374 'GetIconFlag': redefinition; multiple initialization Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 42 Error C2086 'UINT GetIconFlag': redefinition Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 42 Error C2065 'MessageBoxIcon': undeclared identifier Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 42 Error C2146 syntax error: missing ')' before identifier 'icon' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 42 Error C2143 syntax error: missing ';' before '{' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 42 Error C2447 '{': missing function header (old-style formal list?) Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 42 Error C2653 'MessageBoxW': is not a class or namespace name Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 59 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 59 Error C2086 'int DialogResult': redefinition Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 59 Error C2146 syntax error: missing ';' before identifier 'ConvertResult' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 59 Error C2143 syntax error: missing ';' before '{' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 59 Error C2447 '{': missing function header (old-style formal list?) Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 59 Error C2059 syntax error: '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 74 Error C2143 syntax error: missing ';' before '}' Win32CPPLib C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\source\Dialogs\MessageBox.cpp 74 Warning C4819 The file contains a character that cannot be represented in the current code page (936). Save the file in Unicode format to prevent data loss Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 1 Warning C4819 The file contains a character that cannot be represented in the current code page (936). Save the file in Unicode format to prevent data loss Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Win32CPP.h 1 Warning C4819 The file contains a character that cannot be represented in the current code page (936). Save the file in Unicode format to prevent data loss Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Core\Types.h 1 Warning C4819 The file contains a character that cannot be represented in the current code page (936). Save the file in Unicode format to prevent data loss Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 1 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 8 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 9 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 10 Error C2143 syntax error: missing ';' before '}' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 12 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 11 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 15 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 16 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 17 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 18 Error C2143 syntax error: missing ';' before '}' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 20 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 19 Error C2059 syntax error: '}' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 20 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 23 Error C2086 'int None': redefinition Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 23 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 24 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 25 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 26 Error C2143 syntax error: missing ';' before '}' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 28 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 27 Error C2059 syntax error: '}' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 28 Error C2059 syntax error: 'public' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 31 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 33 Error C2146 syntax error: missing ';' before identifier 'Show' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 33 Error C2059 syntax error: 'const' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 33 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 34 Error C2086 'int DialogResult': redefinition Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 34 Error C2146 syntax error: missing ';' before identifier 'Show' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 34 Error C2059 syntax error: 'const' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 34 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 35 Error C2086 'int DialogResult': redefinition Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 35 Error C2146 syntax error: missing ';' before identifier 'Show' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 35 Error C2059 syntax error: 'const' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 35 Error C2059 syntax error: 'private' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 37 Error C2065 'MessageBoxButtons': undeclared identifier Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 39 Error C2146 syntax error: missing ')' before identifier 'buttons' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 39 Error C2065 'MessageBoxIcon': undeclared identifier Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 40 Error C2146 syntax error: missing ')' before identifier 'icon' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 40 Error C4430 missing type specifier - int assumed. Note: C++ does not support default-int Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 41 Error C2086 'int DialogResult': redefinition Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 41 Error C2146 syntax error: missing ';' before identifier 'ConvertResult' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 41 Error C2062 type 'int' unexpected Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 41 Error C2059 syntax error: '}' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 42 Error C2143 syntax error: missing ';' before '}' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 42 Error C2059 syntax error: '}' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 44 Error C2143 syntax error: missing ';' before '}' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Dialogs\MessageBox.h 44 Error C2143 syntax error: missing ';' before '{' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Win32CPP.h 22 Error C2447 '{': missing function header (old-style formal list?) Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPLib\include\Win32CPP.h 22 Error C2872 'Rectangle': ambiguous symbol Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 19 Error C2146 syntax error: missing ';' before identifier 'rect' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 19 Warning C4551 function call missing argument list Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 19 Error C3861 'rect': identifier not found Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 19 Error C2653 'MessageBoxW': is not a class or namespace name Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 24 Error C3861 'Show': identifier not found Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 24 Error C2653 'MessageBoxW': is not a class or namespace name Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 27 Error C3861 'Show': identifier not found Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 27 Error C2146 syntax error: missing ';' before identifier 'result' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 30 Error C2065 'result': undeclared identifier Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 30 Error C2653 'MessageBoxW': is not a class or namespace name Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 30 Error C2653 'MessageBoxButtons': is not a class or namespace name Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 33 Error C2653 'MessageBoxIcon': is not a class or namespace name Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 34 Error C3861 'Show': identifier not found Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 30 Error C2065 'result': undeclared identifier Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 37 Error C2825 'DialogResult': must be a class or namespace when followed by '::' Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 37 Error C2510 'DialogResult': left of '::' must be a class/struct/union Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 37 Error C2653 'MessageBoxW': is not a class or namespace name Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 38 Error C2653 'MessageBoxButtons': is not a class or namespace name Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 38 Error C2872 'OK': ambiguous symbol Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 38 Error C2653 'MessageBoxIcon': is not a class or namespace name Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 38 Error C3861 'Show': identifier not found Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 38 Error C2653 'MessageBoxW': is not a class or namespace name Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 40 Error C2653 'MessageBoxButtons': is not a class or namespace name Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 40 Error C2872 'OK': ambiguous symbol Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 40 Error C2653 'MessageBoxIcon': is not a class or namespace name Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 40 Error C3861 'Show': identifier not found Win32CPPTest C:\Users\RahmanTursun\source\repos\Win32CPP\Win32CPPTest\source\test.cpp 40
最新发布
09-29
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值