Ignore:
Timestamp:
Dec 9, 1999, 1:54:05 AM (26 years ago)
Author:
sandervl
Message:

Unicode <-> Ascii translation changes + fixes for window procedures

File:
1 edited

Legend:

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

    r2016 r2033  
    1 /* $Id: win32wbase.h,v 1.51 1999-12-07 20:43:40 sandervl Exp $ */
     1/* $Id: win32wbase.h,v 1.52 1999-12-09 00:53:38 sandervl Exp $ */
    22/*
    33 * Win32 Window Base Class for OS/2
     
    101101         VOID   updateWindowStyle(DWORD oldExStyle,DWORD oldStyle);
    102102
    103 virtual  LONG   SetWindowLongA(int index, ULONG value);
    104 virtual  ULONG  GetWindowLongA(int index);
     103virtual  LONG   SetWindowLongA(int index, ULONG value, BOOL fUnicode = FALSE);
     104virtual  ULONG  GetWindowLongA(int index, BOOL fUnicode = FALSE);
    105105virtual  WORD   SetWindowWord(int index, WORD value);
    106106virtual  WORD   GetWindowWord(int index);
     
    185185         BOOL   IsWindowEnabled();
    186186         BOOL   IsWindowVisible();
    187          BOOL   IsUnicode()  { return isUnicode; };
     187         //Created with CreateWindowExA or ExW
     188         BOOL   IsUnicode()                     { return isUnicode; };
     189         //Window procedure type
     190         BOOL   IsWindowUnicode();     
     191
    188192         BOOL   GetWindowRect(PRECT pRect);
    189193         int    GetWindowTextLength();
     
    216220static LRESULT  BroadcastMessageW(int type, UINT msg, WPARAM wParam, LPARAM lParam);
    217221
    218        LRESULT  DefWindowProcA(UINT Msg, WPARAM wParam, LPARAM lParam, BOOL fReentered = FALSE);
     222       LRESULT  DefWindowProcA(UINT Msg, WPARAM wParam, LPARAM lParam);
    219223       LRESULT  DefWindowProcW(UINT msg, WPARAM wParam, LPARAM lParam);
    220224
Note: See TracChangeset for help on using the changeset viewer.