/****************************************************************************************** * Chili Direct3D Engine * * Copyright 2018 PlanetChili * * * * This file is part of Chili Direct3D Engine. * * * * Chili Direct3D Engine is free software: you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation, either version 3 of the License, or * * (at your option) any later version. * * * * The Chili Direct3D Engine is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with The Chili Direct3D Engine. If not, see . * ******************************************************************************************/ #include "Window.h" int CALLBACK WinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { try { Window wnd(800, 300, "Donkey Fart Box"); MSG msg; BOOL gResult; while ((gResult = GetMessage(&msg, nullptr, 0, 0)) > 0) { // TranslateMessage will post auxilliary WM_CHAR messages from key msgs TranslateMessage(&msg); DispatchMessage(&msg); } // check if GetMessage call itself borked if (gResult == -1) { return -1; } // wParam here is the value passed to PostQuitMessage return msg.wParam; } catch (const ChiliException& e) { MessageBox(nullptr, e.what(), e.GetType(), MB_OK | MB_ICONEXCLAMATION); } catch (const std::exception& e) { MessageBox(nullptr, e.what(), "Standard Exception", MB_OK | MB_ICONEXCLAMATION); } catch (...) { MessageBox(nullptr, "No details available", "Unknown Exception", MB_OK | MB_ICONEXCLAMATION); } return -1; }