mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-11-17 23:42:20 +00:00
11 lines
271 B
C++
11 lines
271 B
C++
#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");
|
|
}
|