Changeset 821 for trunk/src/user32/new/win32wbase.h
- Timestamp:
 - Sep 4, 1999, 9:42:30 PM (26 years ago)
 - File:
 - 
      
- 1 edited
 
- 
          
  trunk/src/user32/new/win32wbase.h (modified) (6 diffs)
 
 
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 dengertExp $ */1 /* $Id: win32wbase.h,v 1.5 1999-09-04 19:42:29 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Base Class for OS/2 … … 148 148 BOOL CloseWindow(); 149 149 static HWND GetActiveWindow(); 150 BOOL IsWindow(); 150 //Window handle has already been verified, so just return true 151 BOOL IsWindow() { return TRUE; }; 151 152 BOOL IsWindowEnabled(); 152 153 BOOL IsWindowVisible(); … … 154 155 155 156 BOOL GetWindowRect(PRECT pRect); 156 int GetWindowTextLength A();157 int GetWindowText A(LPSTR lpsz, int cch);157 int GetWindowTextLength(); 158 int GetWindowText(LPSTR lpsz, int cch); 158 159 BOOL SetWindowText(LPSTR lpsz); 159 160 BOOL hasWindowName(LPSTR wndname, BOOL fUnicode = 0); … … 198 199 199 200 protected: 201 #ifndef OS2_INCLUDED 202 BOOL CreateWindowExA(CREATESTRUCTA *lpCreateStruct, ATOM classAtom); 203 #endif 200 204 LRESULT SendInternalMessageA(ULONG msg, WPARAM wParam, LPARAM lParam); 201 205 LRESULT SendInternalMessageW(ULONG msg, WPARAM wParam, LPARAM lParam); … … 227 231 BOOL fCreated; 228 232 BOOL fFirstShow; 233 BOOL fIsDialog; 229 234 230 235 Win32BaseWindow *owner; … … 250 255 private: 251 256 #ifndef OS2_INCLUDED 252 BOOL CreateWindowExA(CREATESTRUCTA *lpCreateStruct, ATOM classAtom);253 254 257 void GetMinMaxInfo(POINT *maxSize, POINT *maxPos, POINT *minTrack, POINT *maxTrack ); 255 258  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  