Examples: DirectX examples applications all have a Console for debugging.

This commit is contained in:
ocornut
2015-02-22 13:45:07 +00:00
parent bab81318a9
commit 0d63e0ce60
6 changed files with 10 additions and 10 deletions

View File

@ -280,7 +280,7 @@ void UpdateImGui()
ImGui::NewFrame();
}
int WINAPI wWinMain(HINSTANCE hInst, HINSTANCE, LPWSTR, int)
int main(int argc, char** argv)
{
// Register the window class
WNDCLASSEX wc = { sizeof(WNDCLASSEX), CS_CLASSDC, WndProc, 0L, 0L, GetModuleHandle(NULL), NULL, LoadCursor(NULL, IDC_ARROW), NULL, NULL, L"ImGui Example", NULL };