[idd] helper/CWindow: add onClose and onDestroy hooks

This commit is contained in:
Quantum
2025-09-14 16:21:10 -04:00
committed by Geoffrey McRae
parent c4f3936d98
commit d006dbb547
2 changed files with 16 additions and 0 deletions

View File

@@ -8,6 +8,8 @@ class CWindow {
static LRESULT CALLBACK wndProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
virtual LRESULT onCreate();
virtual LRESULT onClose();
virtual LRESULT onDestroy();
protected:
static HINSTANCE hInstance;