Ignore:
Timestamp:
Sep 5, 1999, 2:03:34 PM (26 years ago)
Author:
sandervl
Message:

Dialog update

File:
1 edited

Legend:

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

    r822 r833  
    1 /* $Id: win32wbase.h,v 1.6 1999-09-04 19:51:47 sandervl Exp $ */
     1/* $Id: win32wbase.h,v 1.7 1999-09-05 12:03:33 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    150150         //Window handle has already been verified, so just return true
    151151         BOOL   IsWindow()                    { return TRUE; };
     152         BOOL   IsDialog()                    { return fIsDialog; };
     153
    152154         BOOL   IsWindowEnabled();
    153155         BOOL   IsWindowVisible();
    154156         BOOL   IsUnicode()  { return isUnicode; };
    155 
    156157         BOOL   GetWindowRect(PRECT pRect);
    157158         int    GetWindowTextLength();
    158          int    GetWindowText(LPSTR lpsz, int cch);
    159          BOOL   SetWindowText(LPSTR lpsz);
    160           BOOL  hasWindowName(LPSTR wndname, BOOL fUnicode = 0);
     159         int    GetWindowTextA(LPSTR lpsz, int cch);
     160         int    GetWindowTextW(LPWSTR lpsz, int cch);
     161         BOOL   SetWindowTextA(LPSTR lpsz);
     162         BOOL   SetWindowTextW(LPWSTR lpsz);
     163         BOOL   hasWindowName(LPSTR wndname, BOOL fUnicode = 0);
    161164Win32WndClass  *getClass()  { return windowClass; };
    162165        char   *getWindowNameA()              { return windowNameA; };
Note: See TracChangeset for help on using the changeset viewer.