[idd] helper: add mode save button

This commit is contained in:
Quantum
2025-10-04 03:47:17 -04:00
committed by Geoffrey McRae
parent 124b4742e0
commit bf77128053
5 changed files with 44 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
#include "CButton.h"
#include <commctrl.h>
#include <CDebug.h>
CButton::CButton(LPCWSTR title, DWORD style, HWND parent)
{
m_hwnd = createWindowSimple(WC_BUTTON, title, style, parent);
if (!m_hwnd)
DEBUG_ERROR_HR(GetLastError(), "Failed to create button");
}