今度は、WM_DESTROYのメッセージハンドラOnDestroyをつくる。
Window.hに、
OnDestroyを追加。
Window.cppは、
CWindow::OnDestroyで、PostQuitMessage。
WM_DESTROYで、OnDestroyを呼ぶ。
MainWindow.hにも、
OnDestroy。
MainWindow.cppは、
メッセージボックスで"CMainWindow::OnDestroy"と表示し、CWindowのOnDestroyを呼ぶ。
まずOnCreate。
そのあとウィンドウ表示。
で、これを閉じると、
OnDestroy。
Test/winapi/CWindow/OnDestroy/src/CWindow at master · bg1bgst333/Test · GitHub