Ignore:
Timestamp:
Sep 4, 1999, 9:42:30 PM (26 years ago)
Author:
sandervl
Message:

Dialog changes

File:
1 edited

Legend:

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

    r819 r821  
    1 /* $Id: win32wbase.h,v 1.4 1999-09-04 17:56:41 dengert Exp $ */
     1/* $Id: win32wbase.h,v 1.5 1999-09-04 19:42:29 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    148148         BOOL   CloseWindow();
    149149  static HWND   GetActiveWindow();
    150          BOOL   IsWindow();
     150         //Window handle has already been verified, so just return true
     151         BOOL   IsWindow()                    { return TRUE; };
    151152         BOOL   IsWindowEnabled();
    152153         BOOL   IsWindowVisible();
     
    154155
    155156         BOOL   GetWindowRect(PRECT pRect);
    156          int    GetWindowTextLengthA();
    157          int    GetWindowTextA(LPSTR lpsz, int cch);
     157         int    GetWindowTextLength();
     158         int    GetWindowText(LPSTR lpsz, int cch);
    158159         BOOL   SetWindowText(LPSTR lpsz);
    159160          BOOL  hasWindowName(LPSTR wndname, BOOL fUnicode = 0);
     
    198199
    199200protected:
     201#ifndef OS2_INCLUDED
     202        BOOL  CreateWindowExA(CREATESTRUCTA *lpCreateStruct, ATOM classAtom);
     203#endif
    200204       LRESULT  SendInternalMessageA(ULONG msg, WPARAM wParam, LPARAM lParam);
    201205       LRESULT  SendInternalMessageW(ULONG msg, WPARAM wParam, LPARAM lParam);
     
    227231        BOOL    fCreated;
    228232        BOOL    fFirstShow;
     233        BOOL    fIsDialog;
    229234
    230235   Win32BaseWindow *owner;
     
    250255private:
    251256#ifndef OS2_INCLUDED
    252         BOOL  CreateWindowExA(CREATESTRUCTA *lpCreateStruct, ATOM classAtom);
    253 
    254257        void  GetMinMaxInfo(POINT *maxSize, POINT *maxPos, POINT *minTrack, POINT *maxTrack );
    255258
Note: See TracChangeset for help on using the changeset viewer.