diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-25 21:35:28 +0200 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2020-05-25 21:43:48 +0200 |
| commit | a06c7ff02ce50243cd1e4bef8bad25bd1978bcda (patch) | |
| tree | 48c0462afd5a9566ffd44cb54659ecea934e70c1 /alf/alf.h | |
| parent | d1be0b5dce72a3bc355e915916955b1a9a267c47 (diff) | |
add explicit functions for adding native buttons
Diffstat (limited to 'alf/alf.h')
| -rw-r--r-- | alf/alf.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 |
