00001 /* file SPIN_DLL.H */ 00002 00003 // Spin Button doesn't send WM_CTLCOLOR message to parent window. 00004 00005 // Spin Button's class-specific window styles. 00006 #define SPNS_WRAP 0x0001L 00007 00008 00009 // Spin Button's class-specific window messages. 00010 #define SPNM_SETRANGE (WM_USER + 0) 00011 #define SPNM_GETRANGE (WM_USER + 1) 00012 #define SPNM_SETCRNTVALUE (WM_USER + 2) 00013 #define SPNM_GETCRNTVALUE (WM_USER + 3) 00014 #define SPNM_SETEDITCTRL (WM_USER + 4) 00015 00016 // Spin Button's notification codes sent in HIWORD of wParam 00017 // during a WM_COMMAND message. 00018 #define SPNN_VALUECHANGE (1) 00019 00020 00021 #define ID_VALUE 100 00022 #define ID_WRAP 101