mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-12-02 22:28:14 +00:00
[idd] helper: add CListBox widget
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
#include "CWidget.h"
|
||||
|
||||
HWND CWidget::createWindowSimple(LPCWSTR cls, LPCWSTR title, DWORD style, HWND parent)
|
||||
HWND CWidget::createWindowSimple(LPCWSTR cls, LPCWSTR title, DWORD style, HWND parent, DWORD dwExStyle)
|
||||
{
|
||||
return CreateWindow(cls, title, style, 0, 0, 0, 0, parent,
|
||||
return CreateWindowEx(dwExStyle, cls, title, style, 0, 0, 0, 0, parent,
|
||||
NULL, (HINSTANCE)GetModuleHandle(NULL), NULL);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user