Skip to content

Commit

Permalink
⚰️ #46 テスト用のデッドコードを削除しました
Browse files Browse the repository at this point in the history
  • Loading branch information
hebiiro committed Feb 4, 2024
1 parent 735573f commit 0cdea29
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions Common/Window.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,9 @@ namespace Tools
UINT_PTR id, DWORD_PTR refData)
{
// MY_TRACE_FUNC("0x%08X, 0x%08X, 0x%08X, 0x%08X, 0x%08X, 0x%08X", hwnd, message, wParam, lParam, id, refData);
TCHAR className[MAX_PATH] = {};
::GetClassName(hwnd, className, std::size(className));
// MY_TRACE_TSTR(className);

auto window = (Window*)refData;
LRESULT lr = window->onWndProc(hwnd, message, wParam, lParam);
// MY_TRACE_HEX(lr);
return lr;
return window->onWndProc(hwnd, message, wParam, lParam);
}

public:
Expand Down

0 comments on commit 0cdea29

Please sign in to comment.