Ignore:
Timestamp:
Jul 25, 1999, 5:51:57 PM (26 years ago)
Author:
sandervl
Message:

Lots of changes; Solitaire now starts

File:
1 edited

Legend:

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

    r391 r392  
    1 /* $Id: win32wnd.h,v 1.18 1999-07-25 09:19:22 sandervl Exp $ */
     1/* $Id: win32wnd.h,v 1.19 1999-07-25 15:51:56 sandervl Exp $ */
    22/*
    33 * Win32 Window Code for OS/2
     
    4343#define WM_WIN32_POSTMESSAGEA   0x4000
    4444#define WM_WIN32_POSTMESSAGEW   0x4001
     45
     46#define MAX_WINDOW_NAMELENGTH   256
    4547
    4648class Win32Window : private GenericObject, private ChildWindow
     
    7375         ULONG  MsgEraseBackGround(ULONG hps);
    7476         ULONG  MsgSetText(LPSTR lpsz, LONG cch);
     77         ULONG  MsgGetTextLength();
     78         char  *MsgGetText();
    7579
    7680virtual  LONG   SetWindowLongA(int index, ULONG value);
     
    134138       BOOL     PostMessageA(ULONG msg, WPARAM wParam, LPARAM lParam);
    135139       BOOL     PostMessageW(ULONG msg, WPARAM wParam, LPARAM lParam);
    136        LRESULT  DefWindowProcA(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
    137        LRESULT  DefWindowProcW(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
     140       LRESULT  DefWindowProcA(UINT msg, WPARAM wParam, LPARAM lParam);
     141       LRESULT  DefWindowProcW(UINT msg, WPARAM wParam, LPARAM lParam);
    138142
    139143         void   NotifyParent(UINT Msg, WPARAM wParam, LPARAM lParam);
     
    192196
    193197        BOOL    isIcon;
     198        BOOL    fCreated;
    194199
    195200   Win32Window *owner;                 
     
    199204 Win32Resource *iconResource;
    200205
    201         char   *windowName;
     206        char    windowNameA[MAX_WINDOW_NAMELENGTH];
     207        WCHAR   windowNameW[MAX_WINDOW_NAMELENGTH];
    202208        ULONG   wndNameLength;
    203209
    204         char   *windowText;
    205         ULONG   wndTextLength;
    206        
    207210        ULONG  *userWindowLong;
    208211        ULONG   nrUserWindowLong;
     
    277280#define KEY_PREVDOWN            2
    278281#define KEY_UP                  4
     282#define KEY_DEADKEY             8
    279283
    280284#endif //__cplusplus
Note: See TracChangeset for help on using the changeset viewer.