Функция main в качестве главной функции Win32
В проектах GNU (например, в GTK+) в качестве главной функции используется стандартная для Си
Код:
int main(int argc, char** argv)
Спасибо.
-mwindows компоновщику, некоторые говорят компилятору g++
Remarks
The name WinMain is used by convention by many programming frameworks. Depending on the programming framework, the call to the WinMain function can be preceded and followed by additional activities specific to that framework.
Your WinMain should initialize the application, display its main window, and enter a message retrieval-and-dispatch loop that is the top-level control structure for the remainder of the application's execution. Terminate the message loop when it receives a WM_QUIT message. At that point, your WinMain should exit the application, returning the value passed in the WM_QUIT message's wParam parameter. If WM_QUIT was received as a result of calling PostQuitMessage, the value of wParam is the value of the PostQuitMessage function's nExitCode parameter. For more information, see Creating a Message Loop.
ANSI applications can use the lpCmdLine parameter of the WinMain function to access the command-line string, excluding the program name. Note that lpCmdLine uses the LPSTR data type instead of the LPTSTR data type. This means that WinMain cannot be used by Unicode programs. The GetCommandLineW function can be used to obtain the command line as a Unicode string. Some programming frameworks might provide an alternative entry point that provides a Unicode command line. For example, the Microsoft Visual Studio C++ complier uses the name wWinMain for the Unicode entry point.
(см. здесь).
Например, компиляторы GNU GCC поддерживает это имя. Но запросто и стандартное для языка имя main. Main кроме того кросплатформенная штука. Фреймворки типа Qt, GTK обычно скрывают от программиста всякие api и нативные примочки. При препроцессировании и компиляции целевой ОС подсовывают то, что она ожидает. Примерно так.
P.S. При написании оконных программ для Windows на "чистом" Win32 API логично использовать WinMain. Мне правда удавалось и из main оконку на api делать.
=)
Цитата: Meander
-mwindows компоновщику, некоторые говорят компилятору g++
Спасибо за помощь. Очередной раз убеждаюсь: нужно идти и учить матчасть.
Цитата: @pixo $oft
FreeConsole();
=)
=)
И Вам спасибо. Задачу, безусловно, выполняет, однако не так. Окно консоли появляется и тут же пропадает. Но появляется. :)