Ignore:
Timestamp:
Feb 9, 2000, 2:40:23 PM (26 years ago)
Author:
sandervl
Message:

YD: header updates + added WaitForInputIdle

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:50 sandervl Exp $ */
     1/* $Id: windowsx.h,v 1.8 2000-02-09 13:40:23 sandervl Exp $ */
    22
    33/* Copyright (C) 1999 Corel Corporation (Paul Quinn) */
     
    10531053        ((void)SendMessage((hwndCtl), EM_SETSEL, (ichStart), (ichEnd)))
    10541054
     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
    10551058#define Edit_GetText(hwndCtl, lpch, cchMax)     GetWindowText((hwndCtl), (lpch), (cchMax))
    10561059#define Edit_GetTextLength(hwndCtl)             GetWindowTextLength(hwndCtl)
     
    10641067#define Edit_SetModify(hwndCtl, fModified) \
    10651068        ((void)SendMessage((hwndCtl), EM_SETMODIFY, (WPARAM)(UINT)(fModified), 0L))
     1069
     1070#define Edit_ScrollCaret(hwndCtl)               ((BOOL)(DWORD)SendMessage((hwndCtl), EM_SCROLLCARET, 0, 0L))
    10661071       
    10671072/* void Cls_OnMeasureItem(HWND hwnd, MEASUREITEMSTRUCT * lpMeasureItem) */
Note: See TracChangeset for help on using the changeset viewer.