Ignore:
Timestamp:
Jul 18, 1999, 12:39:52 PM (26 years ago)
Author:
sandervl
Message:

Lots of changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/new/win32wnd.h

    r324 r325  
    1 /* $Id: win32wnd.h,v 1.7 1999-07-17 18:30:52 sandervl Exp $ */
     1/* $Id: win32wnd.h,v 1.8 1999-07-18 10:39:52 sandervl Exp $ */
    22/*
    33 * Win32 Window Code for OS/2
     
    6666         ULONG  MsgPaint(ULONG tmp1, ULONG tmp2);
    6767         ULONG  MsgEraseBackGround(ULONG hps);
     68         ULONG  MsgSetText(LPSTR lpsz, LONG cch);
    6869
    6970virtual  LONG   SetWindowLongA(int index, ULONG value);
     
    105106         BOOL   IsWindowVisible();
    106107
     108         BOOL   GetWindowRect(PRECT pRect);
     109         int    GetWindowTextLengthA();
     110         int    GetWindowTextA(LPSTR lpsz, int cch);
     111         BOOL   SetWindowTextA(LPCSTR lpsz);
     112
    107113       LRESULT  SendMessageA(ULONG msg, WPARAM wParam, LPARAM lParam);
    108114       LRESULT  SendMessageW(ULONG msg, WPARAM wParam, LPARAM lParam);
     
    119125
    120126protected:
     127       LRESULT  SendInternalMessageA(ULONG msg, WPARAM wParam, LPARAM lParam);
     128       LRESULT  SendInternalMessageW(ULONG msg, WPARAM wParam, LPARAM lParam);
    121129        void    Init();
    122130
     
    173181                             RECT *newClientRect );
    174182
    175      LRESULT  sendMessage(ULONG msg, WPARAM wParam, LPARAM lParam)
     183     LRESULT  SendInternalMessage(ULONG msg, WPARAM wParam, LPARAM lParam)
    176184     {
    177185        if(isUnicode)
    178                 return SendMessageW(msg, wParam, lParam);
    179         else    return SendMessageA(msg, wParam, lParam);
     186                return SendInternalMessageW(msg, wParam, lParam);
     187        else    return SendInternalMessageA(msg, wParam, lParam);
    180188     }
    181189#endif
Note: See TracChangeset for help on using the changeset viewer.