Files
LookingGlass/idd/LGIddHelper/CListBox.h
2025-11-07 00:28:20 +11:00

12 lines
245 B
C++

#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);
};