Ignore:
Timestamp:
May 28, 2000, 6:45:14 PM (25 years ago)
Author:
sandervl
Message:

resource handling changes

File:
1 edited

Legend:

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

    r2803 r3625  
    1 /* $Id: windowclass.cpp,v 1.9 2000-02-16 14:28:26 sandervl Exp $ */
     1/* $Id: windowclass.cpp,v 1.10 2000-05-28 16:43:48 sandervl Exp $ */
    22/*
    33 * Win32 Window Class Code for OS/2
     
    197197 * Variables :
    198198 * Result    : If the function finds a matching class and successfully copies
    199  *               the data, the return value is TRUE;
     199 *             the data, the return value is TRUE;
    200200 *             otherwise, it is FALSE.
    201201 *             To get extended error information, call GetLastError.
     
    203203 *****************************************************************************/
    204204BOOL WIN32API GetClassInfoExA(HINSTANCE     hInstance,
    205                                  LPCTSTR       lpszClass,
    206                                  LPWNDCLASSEXA lpwcx)
     205                              LPCTSTR       lpszClass,
     206                              LPWNDCLASSEXA lpwcx)
    207207{
    208208 BOOL           rc;
    209209 Win32WndClass *wndclass;
    210210
    211   dprintf(("USER32:GetClassInfoExA (%08xh,%x,%08x).\n",
    212          hInstance,
    213          lpszClass,
    214          lpwcx));
     211  if(HIWORD(lpszClass)) {
     212       dprintf(("USER32:GetClassInfoExA (%08xh,%s,%08x)",
     213                 hInstance, lpszClass, lpwcx));
     214  }
     215  else dprintf(("USER32:GetClassInfoExA (%08xh,%x,%08x)",
     216                 hInstance, lpszClass, lpwcx));
    215217
    216218  wndclass = Win32WndClass::FindClass(hInstance, (LPSTR)lpszClass);
Note: See TracChangeset for help on using the changeset viewer.