From d75fd8d0ad863cf59c7d52d45ca596c1ff71a69f Mon Sep 17 00:00:00 2001 From: Jonas Kümmerlin Date: Sun, 31 May 2020 20:45:18 +0200 Subject: combo: switch to naming convention with underscores --- alf/alf.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'alf/alf.h') diff --git a/alf/alf.h b/alf/alf.h index 2399569..044fa9e 100644 --- a/alf/alf.h +++ b/alf/alf.h @@ -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 -- cgit v1.2.3