From a06c7ff02ce50243cd1e4bef8bad25bd1978bcda Mon Sep 17 00:00:00 2001 From: Jonas Kümmerlin Date: Mon, 25 May 2020 21:35:28 +0200 Subject: add explicit functions for adding native buttons --- alf/alf.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'alf/alf.h') diff --git a/alf/alf.h b/alf/alf.h index 18cb241..fc17ec8 100644 --- a/alf/alf.h +++ b/alf/alf.h @@ -438,6 +438,16 @@ ALF_AddRadioButton(HWND parent, WORD id, int x, int y, const TCHAR *text); HWND ALF_AddGroupBox(HWND parent, WORD id, int x, int y, const TCHAR *text); +// native buttons +HWND +ALF_AddNativeButton(HWND win, WORD id, int x, int y, const TCHAR *text); + +HWND +ALF_AddNativeCheckbox(HWND parent, WORD id, int x, int y, const TCHAR *text); + +HWND +ALF_AddNativeRadioButton(HWND parent, WORD id, int x, int y, const TCHAR *text); + #ifdef __cplusplus } // extern C #endif -- cgit v1.2.3