summaryrefslogtreecommitdiff
path: root/include/m_button.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/m_button.h')
-rw-r--r--include/m_button.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/include/m_button.h b/include/m_button.h
index cb2528c4ce..d5742ce4b0 100644
--- a/include/m_button.h
+++ b/include/m_button.h
@@ -43,13 +43,16 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#define BUTTONSETDEFAULT (WM_USER+2)
// Sets the button as a push button
-// wParam = lParam = not used
-// Usage: SendMessage(hwndbutton, BUTTONSETASPUSHBTN, 0, 0);
+// wParam = TRUE/FALSE default on/off
+// lParam = not used
+// Usage: SendMessage(hwndbutton, BUTTONSETASPUSHBTN, 1, 0);
// Only works on MButtonClass buttons
#define BUTTONSETASPUSHBTN (WM_USER+3)
// Sets the button type as a flat button without borders v0.3.3+
-// Usage: SendMessage(hwndbutton, BUTTONSETASFLATBTN, 0, 0);
+// wParam = TRUE/FALSE default on/off
+// lParam = not used
+// Usage: SendMessage(hwndbutton, BUTTONSETASFLATBTN, 1, 0);
// Only works on MButtonClass buttons
#define BUTTONSETASFLATBTN (WM_USER+4)