P
protur
Помогите пожалуйста создать первый проект под Windows. Не могу скомпилировать не один пример, даже такой простой. Новый проект: File->New->Project->Win32Project
#include <windows.h>
int WINAPI WinMain(HINSTANCE, HINSTANCE, PTSTR,int){
MessageBox(0, "Здраствуй, Мир!", "Ты прекрасен!", 0);
return 0;
}
Не компилируется, вот ошибки:
c:\documents and settings\userxp\мои документы\visual studio 2008\projects\1\1\11.cpp(3) : error C2731: 'WinMain' : function cannot be overloaded
c:\documents and settings\userxp\мои документы\visual studio 2008\projects\1\1\11.cpp(3) : see declaration of 'WinMain'
c:\documents and settings\userxp\мои документы\visual studio 2008\projects\1\1\11.cpp(4) : error C2664: 'MessageBoxW' : cannot convert parameter 2 from 'const char [16]' to 'LPCWSTR'
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
Заранее спасибо
#include <windows.h>
int WINAPI WinMain(HINSTANCE, HINSTANCE, PTSTR,int){
MessageBox(0, "Здраствуй, Мир!", "Ты прекрасен!", 0);
return 0;
}
Не компилируется, вот ошибки:
c:\documents and settings\userxp\мои документы\visual studio 2008\projects\1\1\11.cpp(3) : error C2731: 'WinMain' : function cannot be overloaded
c:\documents and settings\userxp\мои документы\visual studio 2008\projects\1\1\11.cpp(3) : see declaration of 'WinMain'
c:\documents and settings\userxp\мои документы\visual studio 2008\projects\1\1\11.cpp(4) : error C2664: 'MessageBoxW' : cannot convert parameter 2 from 'const char [16]' to 'LPCWSTR'
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
Заранее спасибо