Changeset 3625 for trunk/src/user32/windowclass.cpp
- Timestamp:
- May 28, 2000, 6:45:14 PM (25 years ago)
- 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:26sandervl Exp $ */1 /* $Id: windowclass.cpp,v 1.10 2000-05-28 16:43:48 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Class Code for OS/2 … … 197 197 * Variables : 198 198 * Result : If the function finds a matching class and successfully copies 199 * 199 * the data, the return value is TRUE; 200 200 * otherwise, it is FALSE. 201 201 * To get extended error information, call GetLastError. … … 203 203 *****************************************************************************/ 204 204 BOOL WIN32API GetClassInfoExA(HINSTANCE hInstance, 205 206 205 LPCTSTR lpszClass, 206 LPWNDCLASSEXA lpwcx) 207 207 { 208 208 BOOL rc; 209 209 Win32WndClass *wndclass; 210 210 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)); 215 217 216 218 wndclass = Win32WndClass::FindClass(hInstance, (LPSTR)lpszClass);
Note:
See TracChangeset
for help on using the changeset viewer.