annotate foosdk/sdk/libPPUI/AutoComplete.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 #pragma once
|
|
|
2
|
|
|
3 #include <ShlDisp.h>
|
|
|
4
|
|
|
5 HRESULT InitializeEditAC(HWND edit, pfc::const_iterator<pfc::string8> valueEnum, DWORD opts = ACO_AUTOAPPEND | ACO_AUTOSUGGEST);
|
|
|
6 HRESULT InitializeEditAC(HWND edit, const char * values, DWORD opts = ACO_AUTOAPPEND | ACO_AUTOSUGGEST);
|
|
|
7 HRESULT InitializeSimpleAC(HWND edit, IUnknown * vals, DWORD opts);
|
|
|
8 pfc::com_ptr_t<IUnknown> CreateACList(pfc::const_iterator<pfc::string8> valueEnum);
|
|
|
9 pfc::com_ptr_t<IUnknown> CreateACList(pfc::const_iterator<const char *> valueEnum);
|
|
|
10 pfc::com_ptr_t<IUnknown> CreateACList();
|
|
|
11 void CreateACList_AddItem(IUnknown * theList, const char * item);
|