summaryrefslogtreecommitdiff
path: root/alf/alf.h
diff options
context:
space:
mode:
authorJonas Kümmerlin <jonas@kuemmerlin.eu>2020-05-31 20:45:18 +0200
committerJonas Kümmerlin <jonas@kuemmerlin.eu>2020-05-31 20:45:18 +0200
commitd75fd8d0ad863cf59c7d52d45ca596c1ff71a69f (patch)
treea6847cd8f8c31a24cb60190411c1045322048ca8 /alf/alf.h
parent07d18635095fa13a7be974db2d9d990bd12d2cc1 (diff)
combo: switch to naming convention with underscores
Diffstat (limited to 'alf/alf.h')
-rw-r--r--alf/alf.h16
1 files changed, 8 insertions, 8 deletions
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