Changeset 21303 for trunk/src/user32/windowclass.cpp
- Timestamp:
- Jun 18, 2009, 12:04:13 PM (16 years ago)
- 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:58sandervl Exp $ */1 /* $Id: windowclass.cpp,v 1.27 2003/01/03 16:33:02 sandervl Exp $ */ 2 2 /* 3 3 * Win32 Window Class Code for OS/2 … … 461 461 return ret; 462 462 } 463 464 /* 465 * @implemented 466 */ 467 INT 468 WINAPI 469 RealGetWindowClassW( 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 478 INT 479 WINAPI 480 RealGetWindowClassA( 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 463 489 //****************************************************************************** 464 490 //******************************************************************************
Note:
See TracChangeset
for help on using the changeset viewer.