summaryrefslogtreecommitdiff
path: root/alf/alf.h
diff options
context:
space:
mode:
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