Changeset 2694 for trunk/include/win/windowsx.h
- Timestamp:
- Feb 9, 2000, 2:40:23 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/windowsx.h
r2524 r2694 1 /* $Id: windowsx.h,v 1. 7 2000-01-26 23:17:50sandervl Exp $ */1 /* $Id: windowsx.h,v 1.8 2000-02-09 13:40:23 sandervl Exp $ */ 2 2 3 3 /* Copyright (C) 1999 Corel Corporation (Paul Quinn) */ … … 1053 1053 ((void)SendMessage((hwndCtl), EM_SETSEL, (ichStart), (ichEnd))) 1054 1054 1055 #define Edit_GetSel(hwndCtl) ((DWORD)SendMessage((hwndCtl), EM_GETSEL, 0L, 0L)) 1056 #define Edit_ReplaceSel(hwndCtl, lpszReplace) ((void)SendMessage((hwndCtl), EM_REPLACESEL, 0L, (LPARAM)(LPCTSTR)(lpszReplace))) 1057 1055 1058 #define Edit_GetText(hwndCtl, lpch, cchMax) GetWindowText((hwndCtl), (lpch), (cchMax)) 1056 1059 #define Edit_GetTextLength(hwndCtl) GetWindowTextLength(hwndCtl) … … 1064 1067 #define Edit_SetModify(hwndCtl, fModified) \ 1065 1068 ((void)SendMessage((hwndCtl), EM_SETMODIFY, (WPARAM)(UINT)(fModified), 0L)) 1069 1070 #define Edit_ScrollCaret(hwndCtl) ((BOOL)(DWORD)SendMessage((hwndCtl), EM_SCROLLCARET, 0, 0L)) 1066 1071 1067 1072 /* void Cls_OnMeasureItem(HWND hwnd, MEASUREITEMSTRUCT * lpMeasureItem) */
Note:
See TracChangeset
for help on using the changeset viewer.