Ignore:
Timestamp:
Jun 18, 2009, 12:04:13 PM (16 years ago)
Author:
ydario
Message:

User32 updates.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/windowclass.cpp

    r9598 r21303  
    1 /* $Id: windowclass.cpp,v 1.27 2003-01-03 16:35:58 sandervl Exp $ */
     1/* $Id: windowclass.cpp,v 1.27 2003/01/03 16:33:02 sandervl Exp $ */
    22/*
    33 * Win32 Window Class Code for OS/2
     
    461461    return ret;
    462462}
     463
     464/*
     465 * @implemented
     466 */
     467INT
     468WINAPI
     469RealGetWindowClassW(
     470  HWND  hwnd,
     471  LPWSTR pszType,
     472  INT  cchType)
     473{
     474    /* FIXME: Implement correct functionality of RealGetWindowClass */
     475    return GetClassNameW(hwnd,pszType,cchType);
     476}
     477
     478INT
     479WINAPI
     480RealGetWindowClassA(
     481  HWND  hwnd,
     482  LPSTR pszType,
     483  INT  cchType)
     484{
     485    /* FIXME: Implement correct functionality of RealGetWindowClass */
     486    return GetClassNameA(hwnd,pszType,cchType);
     487}
     488
    463489//******************************************************************************
    464490//******************************************************************************
Note: See TracChangeset for help on using the changeset viewer.