annotate foosdk/sdk/foobar2000/shared/filedialogs.h @ 1:20d02a178406
default tip
*: check in everything else
yay
| author |
Paper <paper@tflc.us> |
| date |
Mon, 05 Jan 2026 02:15:46 -0500 |
| parents |
|
| children |
|
| rev |
line source |
|
1
|
1 class uGetOpenFileNameMultiResult_impl : public uGetOpenFileNameMultiResult {
|
|
|
2 pfc::list_t<pfc::string> m_data;
|
|
|
3 public:
|
|
|
4 void AddItem(pfc::stringp param) {m_data.add_item(param);}
|
|
|
5 t_size get_count() const {return m_data.get_count();}
|
|
|
6 void get_item_ex(const char * & out,t_size n) const {out = m_data[n].ptr();}
|
|
|
7 };
|