diff options
Diffstat (limited to 'alf/alf.h')
| -rw-r--r-- | alf/alf.h | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -475,28 +475,28 @@ HWND ALF_AddSelectionOnlyComboBox(HWND win, WORD id, int x, int y); int /* index */ -ALF_ComboBoxAddString(HWND combo, const TCHAR *text); +ALF_ComboBox_AddString(HWND combo, const TCHAR *text); void -ALF_ComboBoxInsertString(HWND combo, int index, const TCHAR *text); +ALF_ComboBox_InsertString(HWND combo, int index, const TCHAR *text); void -ALF_ComboBoxRemoveString(HWND combo, int index); +ALF_ComboBox_RemoveString(HWND combo, int index); TCHAR * // free with ALF_Free -ALF_ComboBoxStringForIndex(HWND combo, int index); +ALF_ComboBox_StringForIndex(HWND combo, int index); int -ALF_ComboBoxCurrentIndex(HWND combo); +ALF_ComboBox_CurrentIndex(HWND combo); void -ALF_ComboBoxSetCurrentIndex(HWND combo, int index); +ALF_ComboBox_SetCurrentIndex(HWND combo, int index); TCHAR * // free with ALF_Free -ALF_ComboBoxCurrentText(HWND combo); +ALF_ComboBox_CurrentText(HWND combo); void -ALF_ComboBoxSetText(HWND combo, const TCHAR *text); +ALF_ComboBox_SetText(HWND combo, const TCHAR *text); // panel HWND |
