[idd] helper: add CListBox widget

This commit is contained in:
Quantum
2025-09-22 01:55:51 -04:00
committed by Geoffrey McRae
parent c99f516b29
commit 96367e83f1
6 changed files with 52 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
#pragma once
#include "CWidget.h"
#include <string>
class CListBox : public CWidget
{
public:
CListBox(DWORD style, HWND parent);
void initStorage(DWORD count, size_t perItem);
int addItem(const std::wstring &display, LPARAM data);
};