i have something going wrong with my WinMain i try to do. I'm totally noob at Windows C++ Programming, i try to learn. I follow a tutoriel to help me. But doesn't look to works! Here is my code..
#include <Windows.h>
LRESULT CALLBACK WindowProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam);
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
HWND hWnd;
WNDCLASSEX wc;
ZeroMemory(&wc, sizeof(WNDCLASSEX));
wc.cbSize = sizeof(WNDCLASSEX);
wc.style = CS_HREDRAW | CS_VREDRAW;
wc.lpfnWndProc = WindowProc;
wc.hInstance = hInstance;
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
wc.hbrBackground = (HBRUSH)COLOR_WINDOW;
wc.lpszClassName = "WindowClass1";
RegisterClassEx(&wc);
hWnd = CreateWindowEx(NULL, "WindowClass1", "Our First Windowed app", WS_OVERLAPPEDWINDOW, 300, 300, 500, 400, NULL, NULL, hInstance, NULL);
ShowWindow(hWnd, SW_SHOW);
MSG msg;
while(GetMessage(&msg, NULL, 0, 0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
return msg.wParam;
//return 0;
}
LRESULT CALLBACK WindowProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
switch(message)
{
case WM_DESTROY:
{
PostQuitMessage(0);
return 0;
} break;
}
}
When i compile, i have no error, but when i run the app, i have only the app icon in my task bar and nothing more. In the task manager, i see 2 instances of the app.
What and where i'm wrong?
Thanks a lot for your help!
RegisterClassEx()succeeding or failing? IsCreateWindowEx()? Is your window proc being called at all? In the future, try debugging yourself before you ask on StackOverflow. – Seva Alekseyev Aug 3 '12 at 19:10GetLastError. Look up every function you use and handle the return/errors accordingly. Coming with the information you get from that proves you've debugged somewhat, and if there's an error, you might be able to track it down yourself. – chris Aug 3 '12 at 19:17