Ignore:
Timestamp:
Apr 12, 2001, 4:04:54 PM (24 years ago)
Author:
sandervl
Message:

Sofiya: DBCS fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/win32wbase.h

    r5404 r5496  
    1 /* $Id: win32wbase.h,v 1.112 2001-03-30 11:14:36 sandervl Exp $ */
     1/* $Id: win32wbase.h,v 1.113 2001-04-12 14:04:33 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    261261         BOOL   IsMixMaxStateChanging()       { return fMinMaxChange; };
    262262
    263          int    GetWindowTextLength();
     263         int    GetWindowTextLength(BOOL fUnicode);
     264         int    GetWindowTextLengthA() { return GetWindowTextLength(FALSE); };
     265         int    GetWindowTextLengthW() { return GetWindowTextLength(TRUE);  };
     266
    264267         int    GetWindowTextA(LPSTR lpsz, int cch);
    265268         int    GetWindowTextW(LPWSTR lpsz, int cch);
     
    389392        char   *windowNameA;
    390393        WCHAR  *windowNameW;
    391         ULONG   wndNameLength; //including 0 terminator
    392394
    393395        char   *userWindowBytes;
Note: See TracChangeset for help on using the changeset viewer.