winex11: Fix handling of property sizes for 64-bit platforms.
[wine/multimedia.git] / dlls / user32 / class.c
blobff0e1f804b641255706934422e82cca691be9787
1 /*
2 * Window classes functions
4 * Copyright 1993, 1996, 2003 Alexandre Julliard
5 * Copyright 1998 Juergen Schmied (jsch)
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "config.h"
23 #include "wine/port.h"
25 #include <assert.h>
26 #include <stdarg.h>
27 #include <stdlib.h>
28 #include <string.h>
30 #include "winerror.h"
31 #include "windef.h"
32 #include "winbase.h"
33 #include "wingdi.h"
34 #include "wine/unicode.h"
35 #include "win.h"
36 #include "user_private.h"
37 #include "controls.h"
38 #include "wine/server.h"
39 #include "wine/list.h"
40 #include "wine/debug.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(class);
44 #define MAX_ATOM_LEN 255 /* from dlls/kernel32/atom.c */
46 typedef struct tagCLASS
48 struct list entry; /* Entry in class list */
49 UINT style; /* Class style */
50 BOOL local; /* Local class? */
51 WNDPROC winproc; /* Window procedure */
52 INT cbClsExtra; /* Class extra bytes */
53 INT cbWndExtra; /* Window extra bytes */
54 LPWSTR menuName; /* Default menu name (Unicode followed by ASCII) */
55 struct dce *dce; /* Opaque pointer to class DCE */
56 HINSTANCE hInstance; /* Module that created the task */
57 HICON hIcon; /* Default icon */
58 HICON hIconSm; /* Default small icon */
59 HCURSOR hCursor; /* Default cursor */
60 HBRUSH hbrBackground; /* Default background */
61 ATOM atomName; /* Name of the class */
62 WCHAR name[MAX_ATOM_LEN + 1];
63 } CLASS;
65 static struct list class_list = LIST_INIT( class_list );
67 #define CLASS_OTHER_PROCESS ((CLASS *)1)
69 /***********************************************************************
70 * get_class_ptr
72 static CLASS *get_class_ptr( HWND hwnd, BOOL write_access )
74 WND *ptr = WIN_GetPtr( hwnd );
76 if (ptr)
78 if (ptr != WND_OTHER_PROCESS && ptr != WND_DESKTOP) return ptr->class;
79 if (!write_access) return CLASS_OTHER_PROCESS;
81 /* modifying classes in other processes is not allowed */
82 if (ptr == WND_DESKTOP || IsWindow( hwnd ))
84 SetLastError( ERROR_ACCESS_DENIED );
85 return NULL;
88 SetLastError( ERROR_INVALID_WINDOW_HANDLE );
89 return NULL;
93 /***********************************************************************
94 * release_class_ptr
96 static inline void release_class_ptr( CLASS *ptr )
98 USER_Unlock();
102 /***********************************************************************
103 * get_int_atom_value
105 ATOM get_int_atom_value( LPCWSTR name )
107 UINT ret = 0;
109 if (IS_INTRESOURCE(name)) return LOWORD(name);
110 if (*name++ != '#') return 0;
111 while (*name)
113 if (*name < '0' || *name > '9') return 0;
114 ret = ret * 10 + *name++ - '0';
115 if (ret > 0xffff) return 0;
117 return ret;
121 /***********************************************************************
122 * set_server_info
124 * Set class info with the wine server.
126 static BOOL set_server_info( HWND hwnd, INT offset, LONG_PTR newval, UINT size )
128 BOOL ret;
130 SERVER_START_REQ( set_class_info )
132 req->window = hwnd;
133 req->extra_offset = -1;
134 switch(offset)
136 case GCW_ATOM:
137 req->flags = SET_CLASS_ATOM;
138 req->atom = newval;
139 case GCL_STYLE:
140 req->flags = SET_CLASS_STYLE;
141 req->style = newval;
142 break;
143 case GCL_CBWNDEXTRA:
144 req->flags = SET_CLASS_WINEXTRA;
145 req->win_extra = newval;
146 break;
147 case GCLP_HMODULE:
148 req->flags = SET_CLASS_INSTANCE;
149 req->instance = (void *)newval;
150 break;
151 default:
152 assert( offset >= 0 );
153 req->flags = SET_CLASS_EXTRA;
154 req->extra_offset = offset;
155 req->extra_size = size;
156 if ( size == sizeof(LONG) )
158 LONG newlong = newval;
159 memcpy( &req->extra_value, &newlong, sizeof(LONG) );
161 else
162 memcpy( &req->extra_value, &newval, sizeof(LONG_PTR) );
163 break;
165 ret = !wine_server_call_err( req );
167 SERVER_END_REQ;
168 return ret;
172 /***********************************************************************
173 * CLASS_GetMenuNameA
175 * Get the menu name as a ASCII string.
177 static inline LPSTR CLASS_GetMenuNameA( CLASS *classPtr )
179 if (!HIWORD(classPtr->menuName)) return (LPSTR)classPtr->menuName;
180 return (LPSTR)(classPtr->menuName + strlenW(classPtr->menuName) + 1);
184 /***********************************************************************
185 * CLASS_GetMenuNameW
187 * Get the menu name as a Unicode string.
189 static inline LPWSTR CLASS_GetMenuNameW( CLASS *classPtr )
191 return classPtr->menuName;
195 /***********************************************************************
196 * CLASS_SetMenuNameA
198 * Set the menu name in a class structure by copying the string.
200 static void CLASS_SetMenuNameA( CLASS *classPtr, LPCSTR name )
202 if (HIWORD(classPtr->menuName)) HeapFree( GetProcessHeap(), 0, classPtr->menuName );
203 if (HIWORD(name))
205 DWORD lenA = strlen(name) + 1;
206 DWORD lenW = MultiByteToWideChar( CP_ACP, 0, name, lenA, NULL, 0 );
207 classPtr->menuName = HeapAlloc( GetProcessHeap(), 0, lenA + lenW*sizeof(WCHAR) );
208 MultiByteToWideChar( CP_ACP, 0, name, lenA, classPtr->menuName, lenW );
209 memcpy( classPtr->menuName + lenW, name, lenA );
211 else classPtr->menuName = (LPWSTR)name;
215 /***********************************************************************
216 * CLASS_SetMenuNameW
218 * Set the menu name in a class structure by copying the string.
220 static void CLASS_SetMenuNameW( CLASS *classPtr, LPCWSTR name )
222 if (HIWORD(classPtr->menuName)) HeapFree( GetProcessHeap(), 0, classPtr->menuName );
223 if (HIWORD(name))
225 DWORD lenW = strlenW(name) + 1;
226 DWORD lenA = WideCharToMultiByte( CP_ACP, 0, name, lenW, NULL, 0, NULL, NULL );
227 classPtr->menuName = HeapAlloc( GetProcessHeap(), 0, lenA + lenW*sizeof(WCHAR) );
228 memcpy( classPtr->menuName, name, lenW*sizeof(WCHAR) );
229 WideCharToMultiByte( CP_ACP, 0, name, lenW,
230 (char *)(classPtr->menuName + lenW), lenA, NULL, NULL );
232 else classPtr->menuName = (LPWSTR)name;
236 /***********************************************************************
237 * CLASS_FreeClass
239 * Free a class structure.
241 static void CLASS_FreeClass( CLASS *classPtr )
243 TRACE("%p\n", classPtr);
245 USER_Lock();
247 if (classPtr->dce) free_dce( classPtr->dce, 0 );
248 list_remove( &classPtr->entry );
249 if (classPtr->hbrBackground > (HBRUSH)(COLOR_GRADIENTINACTIVECAPTION + 1))
250 DeleteObject( classPtr->hbrBackground );
251 HeapFree( GetProcessHeap(), 0, classPtr->menuName );
252 HeapFree( GetProcessHeap(), 0, classPtr );
253 USER_Unlock();
257 /***********************************************************************
258 * CLASS_FreeModuleClasses
260 void CLASS_FreeModuleClasses( HMODULE16 hModule )
262 struct list *ptr, *next;
264 TRACE("0x%08x\n", hModule);
266 USER_Lock();
267 for (ptr = list_head( &class_list ); ptr; ptr = next)
269 CLASS *class = LIST_ENTRY( ptr, CLASS, entry );
270 next = list_next( &class_list, ptr );
271 if (class->hInstance == HINSTANCE_32(hModule))
273 BOOL ret;
275 SERVER_START_REQ( destroy_class )
277 req->atom = class->atomName;
278 req->instance = class->hInstance;
279 ret = !wine_server_call_err( req );
281 SERVER_END_REQ;
282 if (ret) CLASS_FreeClass( class );
285 USER_Unlock();
289 /***********************************************************************
290 * CLASS_FindClass
292 * Return a pointer to the class.
293 * hinstance has been normalized by the caller.
295 static CLASS *CLASS_FindClass( LPCWSTR name, HINSTANCE hinstance )
297 struct list *ptr;
298 ATOM atom = get_int_atom_value( name );
300 USER_Lock();
302 LIST_FOR_EACH( ptr, &class_list )
304 CLASS *class = LIST_ENTRY( ptr, CLASS, entry );
305 if (atom)
307 if (class->atomName != atom) continue;
309 else
311 if (!name || strcmpiW( class->name, name )) continue;
313 if (!hinstance || !class->local || class->hInstance == hinstance)
315 TRACE("%s %p -> %p\n", debugstr_w(name), hinstance, class);
316 return class;
319 USER_Unlock();
320 TRACE("%s %p -> not found\n", debugstr_w(name), hinstance);
321 return NULL;
325 /***********************************************************************
326 * CLASS_RegisterClass
328 * The real RegisterClass() functionality.
330 static CLASS *CLASS_RegisterClass( LPCWSTR name, HINSTANCE hInstance, BOOL local,
331 DWORD style, INT classExtra, INT winExtra )
333 CLASS *classPtr;
334 BOOL ret;
336 TRACE("name=%s hinst=%p style=0x%x clExtr=0x%x winExtr=0x%x\n",
337 debugstr_w(name), hInstance, style, classExtra, winExtra );
339 /* Fix the extra bytes value */
341 if (classExtra < 0 || winExtra < 0)
343 SetLastError( ERROR_INVALID_PARAMETER );
344 return NULL;
346 if (classExtra > 40) /* Extra bytes are limited to 40 in Win32 */
347 WARN("Class extra bytes %d is > 40\n", classExtra);
348 if (winExtra > 40) /* Extra bytes are limited to 40 in Win32 */
349 WARN("Win extra bytes %d is > 40\n", winExtra );
351 classPtr = HeapAlloc( GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(CLASS) + classExtra );
352 if (!classPtr) return NULL;
354 classPtr->atomName = get_int_atom_value( name );
355 if (!classPtr->atomName && name) strcpyW( classPtr->name, name );
356 else GlobalGetAtomNameW( classPtr->atomName, classPtr->name, sizeof(classPtr->name)/sizeof(WCHAR) );
358 SERVER_START_REQ( create_class )
360 req->local = local;
361 req->style = style;
362 req->instance = hInstance;
363 req->extra = classExtra;
364 req->win_extra = winExtra;
365 req->client_ptr = classPtr;
366 req->atom = classPtr->atomName;
367 if (!req->atom && name) wine_server_add_data( req, name, strlenW(name) * sizeof(WCHAR) );
368 ret = !wine_server_call_err( req );
369 classPtr->atomName = reply->atom;
371 SERVER_END_REQ;
372 if (!ret)
374 HeapFree( GetProcessHeap(), 0, classPtr );
375 return NULL;
378 classPtr->style = style;
379 classPtr->local = local;
380 classPtr->cbWndExtra = winExtra;
381 classPtr->cbClsExtra = classExtra;
382 classPtr->hInstance = hInstance;
384 /* Other non-null values must be set by caller */
386 USER_Lock();
387 if (local) list_add_head( &class_list, &classPtr->entry );
388 else list_add_tail( &class_list, &classPtr->entry );
389 return classPtr;
393 /***********************************************************************
394 * register_builtin
396 * Register a builtin control class.
397 * This allows having both ASCII and Unicode winprocs for the same class.
399 static WNDPROC register_builtin( const struct builtin_class_descr *descr )
401 CLASS *classPtr;
403 if (!(classPtr = CLASS_RegisterClass( descr->name, user32_module, FALSE,
404 descr->style, 0, descr->extra ))) return 0;
406 classPtr->hCursor = LoadCursorA( 0, (LPSTR)descr->cursor );
407 classPtr->hbrBackground = descr->brush;
408 classPtr->winproc = WINPROC_AllocProc( descr->procA, descr->procW );
409 release_class_ptr( classPtr );
410 return classPtr->winproc;
414 /***********************************************************************
415 * CLASS_RegisterBuiltinClasses
417 void CLASS_RegisterBuiltinClasses(void)
419 register_builtin( &DESKTOP_builtin_class );
420 register_builtin( &BUTTON_builtin_class );
421 register_builtin( &COMBO_builtin_class );
422 register_builtin( &COMBOLBOX_builtin_class );
423 register_builtin( &DIALOG_builtin_class );
424 EDIT_winproc_handle = register_builtin( &EDIT_builtin_class );
425 register_builtin( &ICONTITLE_builtin_class );
426 register_builtin( &LISTBOX_builtin_class );
427 register_builtin( &MDICLIENT_builtin_class );
428 register_builtin( &MENU_builtin_class );
429 register_builtin( &SCROLL_builtin_class );
430 register_builtin( &STATIC_builtin_class );
432 /* the DefWindowProc winprocs are magic too */
433 WINPROC_AllocProc( DefWindowProcA, DefWindowProcW );
437 /***********************************************************************
438 * get_class_winproc
440 WNDPROC get_class_winproc( CLASS *class )
442 return class->winproc;
446 /***********************************************************************
447 * get_class_dce
449 struct dce *get_class_dce( CLASS *class )
451 return class->dce;
455 /***********************************************************************
456 * set_class_dce
458 struct dce *set_class_dce( CLASS *class, struct dce *dce )
460 if (class->dce) return class->dce; /* already set, don't change it */
461 class->dce = dce;
462 return dce;
466 /***********************************************************************
467 * RegisterClassA (USER32.@)
469 * Register a window class.
471 * RETURNS
472 * >0: Unique identifier
473 * 0: Failure
475 ATOM WINAPI RegisterClassA( const WNDCLASSA* wc ) /* [in] Address of structure with class data */
477 WNDCLASSEXA wcex;
479 wcex.cbSize = sizeof(wcex);
480 wcex.style = wc->style;
481 wcex.lpfnWndProc = wc->lpfnWndProc;
482 wcex.cbClsExtra = wc->cbClsExtra;
483 wcex.cbWndExtra = wc->cbWndExtra;
484 wcex.hInstance = wc->hInstance;
485 wcex.hIcon = wc->hIcon;
486 wcex.hCursor = wc->hCursor;
487 wcex.hbrBackground = wc->hbrBackground;
488 wcex.lpszMenuName = wc->lpszMenuName;
489 wcex.lpszClassName = wc->lpszClassName;
490 wcex.hIconSm = 0;
491 return RegisterClassExA( &wcex );
495 /***********************************************************************
496 * RegisterClassW (USER32.@)
498 * See RegisterClassA.
500 ATOM WINAPI RegisterClassW( const WNDCLASSW* wc )
502 WNDCLASSEXW wcex;
504 wcex.cbSize = sizeof(wcex);
505 wcex.style = wc->style;
506 wcex.lpfnWndProc = wc->lpfnWndProc;
507 wcex.cbClsExtra = wc->cbClsExtra;
508 wcex.cbWndExtra = wc->cbWndExtra;
509 wcex.hInstance = wc->hInstance;
510 wcex.hIcon = wc->hIcon;
511 wcex.hCursor = wc->hCursor;
512 wcex.hbrBackground = wc->hbrBackground;
513 wcex.lpszMenuName = wc->lpszMenuName;
514 wcex.lpszClassName = wc->lpszClassName;
515 wcex.hIconSm = 0;
516 return RegisterClassExW( &wcex );
520 /***********************************************************************
521 * RegisterClassExA (USER32.@)
523 ATOM WINAPI RegisterClassExA( const WNDCLASSEXA* wc )
525 ATOM atom;
526 CLASS *classPtr;
527 HINSTANCE instance;
529 if (wc->hInstance == user32_module)
531 /* we can't register a class for user32 */
532 SetLastError( ERROR_INVALID_PARAMETER );
533 return 0;
535 if (!(instance = wc->hInstance)) instance = GetModuleHandleW( NULL );
537 if (!IS_INTRESOURCE(wc->lpszClassName))
539 WCHAR name[MAX_ATOM_LEN + 1];
541 if (!MultiByteToWideChar( CP_ACP, 0, wc->lpszClassName, -1, name, MAX_ATOM_LEN + 1 )) return 0;
542 classPtr = CLASS_RegisterClass( name, instance, !(wc->style & CS_GLOBALCLASS),
543 wc->style, wc->cbClsExtra, wc->cbWndExtra );
545 else
547 classPtr = CLASS_RegisterClass( (LPCWSTR)wc->lpszClassName, instance,
548 !(wc->style & CS_GLOBALCLASS), wc->style,
549 wc->cbClsExtra, wc->cbWndExtra );
551 if (!classPtr) return 0;
552 atom = classPtr->atomName;
554 TRACE("name=%s atom=%04x wndproc=%p hinst=%p bg=%p style=%08x clsExt=%d winExt=%d class=%p\n",
555 debugstr_a(wc->lpszClassName), atom, wc->lpfnWndProc, instance, wc->hbrBackground,
556 wc->style, wc->cbClsExtra, wc->cbWndExtra, classPtr );
558 classPtr->hIcon = wc->hIcon;
559 classPtr->hIconSm = wc->hIconSm;
560 classPtr->hCursor = wc->hCursor;
561 classPtr->hbrBackground = wc->hbrBackground;
562 classPtr->winproc = WINPROC_AllocProc( wc->lpfnWndProc, NULL );
563 CLASS_SetMenuNameA( classPtr, wc->lpszMenuName );
564 release_class_ptr( classPtr );
565 return atom;
569 /***********************************************************************
570 * RegisterClassExW (USER32.@)
572 ATOM WINAPI RegisterClassExW( const WNDCLASSEXW* wc )
574 ATOM atom;
575 CLASS *classPtr;
576 HINSTANCE instance;
578 if (wc->hInstance == user32_module)
580 /* we can't register a class for user32 */
581 SetLastError( ERROR_INVALID_PARAMETER );
582 return 0;
584 if (!(instance = wc->hInstance)) instance = GetModuleHandleW( NULL );
586 if (!(classPtr = CLASS_RegisterClass( wc->lpszClassName, instance, !(wc->style & CS_GLOBALCLASS),
587 wc->style, wc->cbClsExtra, wc->cbWndExtra )))
588 return 0;
590 atom = classPtr->atomName;
592 TRACE("name=%s atom=%04x wndproc=%p hinst=%p bg=%p style=%08x clsExt=%d winExt=%d class=%p\n",
593 debugstr_w(wc->lpszClassName), atom, wc->lpfnWndProc, instance, wc->hbrBackground,
594 wc->style, wc->cbClsExtra, wc->cbWndExtra, classPtr );
596 classPtr->hIcon = wc->hIcon;
597 classPtr->hIconSm = wc->hIconSm;
598 classPtr->hCursor = wc->hCursor;
599 classPtr->hbrBackground = wc->hbrBackground;
600 classPtr->winproc = WINPROC_AllocProc( NULL, wc->lpfnWndProc );
601 CLASS_SetMenuNameW( classPtr, wc->lpszMenuName );
602 release_class_ptr( classPtr );
603 return atom;
607 /***********************************************************************
608 * UnregisterClassA (USER32.@)
610 BOOL WINAPI UnregisterClassA( LPCSTR className, HINSTANCE hInstance )
612 if (!IS_INTRESOURCE(className))
614 WCHAR name[MAX_ATOM_LEN + 1];
616 if (!MultiByteToWideChar( CP_ACP, 0, className, -1, name, MAX_ATOM_LEN + 1 ))
617 return FALSE;
618 return UnregisterClassW( name, hInstance );
620 return UnregisterClassW( (LPCWSTR)className, hInstance );
623 /***********************************************************************
624 * UnregisterClassW (USER32.@)
626 BOOL WINAPI UnregisterClassW( LPCWSTR className, HINSTANCE hInstance )
628 CLASS *classPtr = NULL;
630 SERVER_START_REQ( destroy_class )
632 req->instance = hInstance;
633 if (!(req->atom = get_int_atom_value(className)) && className)
634 wine_server_add_data( req, className, strlenW(className) * sizeof(WCHAR) );
635 if (!wine_server_call_err( req )) classPtr = reply->client_ptr;
637 SERVER_END_REQ;
639 if (classPtr) CLASS_FreeClass( classPtr );
640 return (classPtr != NULL);
644 /***********************************************************************
645 * GetClassWord (USER32.@)
647 WORD WINAPI GetClassWord( HWND hwnd, INT offset )
649 CLASS *class;
650 WORD retvalue = 0;
652 if (offset < 0) return GetClassLongA( hwnd, offset );
654 if (!(class = get_class_ptr( hwnd, FALSE ))) return 0;
656 if (class == CLASS_OTHER_PROCESS)
658 SERVER_START_REQ( set_class_info )
660 req->window = hwnd;
661 req->flags = 0;
662 req->extra_offset = offset;
663 req->extra_size = sizeof(retvalue);
664 if (!wine_server_call_err( req ))
665 memcpy( &retvalue, &reply->old_extra_value, sizeof(retvalue) );
667 SERVER_END_REQ;
668 return retvalue;
671 if (offset <= class->cbClsExtra - sizeof(WORD))
672 memcpy( &retvalue, (char *)(class + 1) + offset, sizeof(retvalue) );
673 else
674 SetLastError( ERROR_INVALID_INDEX );
675 release_class_ptr( class );
676 return retvalue;
680 /***********************************************************************
681 * CLASS_GetClassLong
683 * Implementation of GetClassLong(Ptr)A/W
685 static ULONG_PTR CLASS_GetClassLong( HWND hwnd, INT offset, UINT size,
686 BOOL unicode )
688 CLASS *class;
689 ULONG_PTR retvalue = 0;
691 if (!(class = get_class_ptr( hwnd, FALSE ))) return 0;
693 if (class == CLASS_OTHER_PROCESS)
695 SERVER_START_REQ( set_class_info )
697 req->window = hwnd;
698 req->flags = 0;
699 req->extra_offset = (offset >= 0) ? offset : -1;
700 req->extra_size = (offset >= 0) ? size : 0;
701 if (!wine_server_call_err( req ))
703 switch(offset)
705 case GCLP_HBRBACKGROUND:
706 case GCLP_HCURSOR:
707 case GCLP_HICON:
708 case GCLP_HICONSM:
709 case GCLP_WNDPROC:
710 case GCLP_MENUNAME:
711 FIXME( "offset %d (%s) not supported on other process window %p\n",
712 offset, SPY_GetClassLongOffsetName(offset), hwnd );
713 SetLastError( ERROR_INVALID_HANDLE );
714 break;
715 case GCL_STYLE:
716 retvalue = reply->old_style;
717 break;
718 case GCL_CBWNDEXTRA:
719 retvalue = reply->old_win_extra;
720 break;
721 case GCL_CBCLSEXTRA:
722 retvalue = reply->old_extra;
723 break;
724 case GCLP_HMODULE:
725 retvalue = (ULONG_PTR)reply->old_instance;
726 break;
727 case GCW_ATOM:
728 retvalue = reply->old_atom;
729 break;
730 default:
731 if (offset >= 0)
733 if (size == sizeof(DWORD))
735 DWORD retdword;
736 memcpy( &retdword, &reply->old_extra_value, sizeof(DWORD) );
737 retvalue = retdword;
739 else
740 memcpy( &retvalue, &reply->old_extra_value,
741 sizeof(ULONG_PTR) );
743 else SetLastError( ERROR_INVALID_INDEX );
744 break;
748 SERVER_END_REQ;
749 return retvalue;
752 if (offset >= 0)
754 if (offset <= class->cbClsExtra - size)
756 if (size == sizeof(DWORD))
758 DWORD retdword;
759 memcpy( &retdword, (char *)(class + 1) + offset, sizeof(DWORD) );
760 retvalue = retdword;
762 else
763 memcpy( &retvalue, (char *)(class + 1) + offset, sizeof(ULONG_PTR) );
765 else
766 SetLastError( ERROR_INVALID_INDEX );
767 release_class_ptr( class );
768 return retvalue;
771 switch(offset)
773 case GCLP_HBRBACKGROUND:
774 retvalue = (ULONG_PTR)class->hbrBackground;
775 break;
776 case GCLP_HCURSOR:
777 retvalue = (ULONG_PTR)class->hCursor;
778 break;
779 case GCLP_HICON:
780 retvalue = (ULONG_PTR)class->hIcon;
781 break;
782 case GCLP_HICONSM:
783 retvalue = (ULONG_PTR)class->hIconSm;
784 break;
785 case GCL_STYLE:
786 retvalue = class->style;
787 break;
788 case GCL_CBWNDEXTRA:
789 retvalue = class->cbWndExtra;
790 break;
791 case GCL_CBCLSEXTRA:
792 retvalue = class->cbClsExtra;
793 break;
794 case GCLP_HMODULE:
795 retvalue = (ULONG_PTR)class->hInstance;
796 break;
797 case GCLP_WNDPROC:
798 retvalue = (ULONG_PTR)WINPROC_GetProc( class->winproc, unicode );
799 break;
800 case GCLP_MENUNAME:
801 retvalue = (ULONG_PTR)CLASS_GetMenuNameW( class );
802 if (unicode)
803 retvalue = (ULONG_PTR)CLASS_GetMenuNameW( class );
804 else
805 retvalue = (ULONG_PTR)CLASS_GetMenuNameA( class );
806 break;
807 case GCW_ATOM:
808 retvalue = class->atomName;
809 break;
810 default:
811 SetLastError( ERROR_INVALID_INDEX );
812 break;
814 release_class_ptr( class );
815 return retvalue;
819 /***********************************************************************
820 * GetClassLongW (USER32.@)
822 DWORD WINAPI GetClassLongW( HWND hwnd, INT offset )
824 return CLASS_GetClassLong( hwnd, offset, sizeof(DWORD), TRUE );
829 /***********************************************************************
830 * GetClassLongA (USER32.@)
832 DWORD WINAPI GetClassLongA( HWND hwnd, INT offset )
834 return CLASS_GetClassLong( hwnd, offset, sizeof(DWORD), FALSE );
838 /***********************************************************************
839 * SetClassWord (USER32.@)
841 WORD WINAPI SetClassWord( HWND hwnd, INT offset, WORD newval )
843 CLASS *class;
844 WORD retval = 0;
846 if (offset < 0) return SetClassLongA( hwnd, offset, (DWORD)newval );
848 if (!(class = get_class_ptr( hwnd, TRUE ))) return 0;
850 SERVER_START_REQ( set_class_info )
852 req->window = hwnd;
853 req->flags = SET_CLASS_EXTRA;
854 req->extra_offset = offset;
855 req->extra_size = sizeof(newval);
856 memcpy( &req->extra_value, &newval, sizeof(newval) );
857 if (!wine_server_call_err( req ))
859 void *ptr = (char *)(class + 1) + offset;
860 memcpy( &retval, ptr, sizeof(retval) );
861 memcpy( ptr, &newval, sizeof(newval) );
864 SERVER_END_REQ;
865 release_class_ptr( class );
866 return retval;
870 /***********************************************************************
871 * CLASS_SetClassLong
873 * Implementation of SetClassLong(Ptr)A/W
875 static ULONG_PTR CLASS_SetClassLong( HWND hwnd, INT offset, LONG_PTR newval,
876 UINT size, BOOL unicode )
878 CLASS *class;
879 ULONG_PTR retval = 0;
881 if (!(class = get_class_ptr( hwnd, TRUE ))) return 0;
883 if (offset >= 0)
885 if (set_server_info( hwnd, offset, newval, size ))
887 void *ptr = (char *)(class + 1) + offset;
888 if ( size == sizeof(LONG) )
890 DWORD retdword;
891 LONG newlong = newval;
892 memcpy( &retdword, ptr, sizeof(DWORD) );
893 memcpy( ptr, &newlong, sizeof(LONG) );
894 retval = retdword;
896 else
898 memcpy( &retval, ptr, sizeof(ULONG_PTR) );
899 memcpy( ptr, &newval, sizeof(LONG_PTR) );
903 else switch(offset)
905 case GCLP_MENUNAME:
906 if ( unicode )
907 CLASS_SetMenuNameW( class, (LPCWSTR)newval );
908 else
909 CLASS_SetMenuNameA( class, (LPCSTR)newval );
910 retval = 0; /* Old value is now meaningless anyway */
911 break;
912 case GCLP_WNDPROC:
913 retval = (ULONG_PTR)WINPROC_GetProc( class->winproc, unicode );
914 class->winproc = WINPROC_AllocProc( unicode ? NULL : (WNDPROC)newval,
915 unicode ? (WNDPROC)newval : NULL );
916 break;
917 case GCLP_HBRBACKGROUND:
918 retval = (ULONG_PTR)class->hbrBackground;
919 class->hbrBackground = (HBRUSH)newval;
920 break;
921 case GCLP_HCURSOR:
922 retval = (ULONG_PTR)class->hCursor;
923 class->hCursor = (HCURSOR)newval;
924 break;
925 case GCLP_HICON:
926 retval = (ULONG_PTR)class->hIcon;
927 class->hIcon = (HICON)newval;
928 break;
929 case GCLP_HICONSM:
930 retval = (ULONG_PTR)class->hIconSm;
931 class->hIconSm = (HICON)newval;
932 break;
933 case GCL_STYLE:
934 if (!set_server_info( hwnd, offset, newval, size )) break;
935 retval = class->style;
936 class->style = newval;
937 break;
938 case GCL_CBWNDEXTRA:
939 if (!set_server_info( hwnd, offset, newval, size )) break;
940 retval = class->cbWndExtra;
941 class->cbWndExtra = newval;
942 break;
943 case GCLP_HMODULE:
944 if (!set_server_info( hwnd, offset, newval, size )) break;
945 retval = (ULONG_PTR)class->hInstance;
946 class->hInstance = (HINSTANCE)newval;
947 break;
948 case GCW_ATOM:
949 if (!set_server_info( hwnd, offset, newval, size )) break;
950 retval = class->atomName;
951 class->atomName = newval;
952 GlobalGetAtomNameW( newval, class->name, sizeof(class->name)/sizeof(WCHAR) );
953 break;
954 case GCL_CBCLSEXTRA: /* cannot change this one */
955 SetLastError( ERROR_INVALID_PARAMETER );
956 break;
957 default:
958 SetLastError( ERROR_INVALID_INDEX );
959 break;
961 release_class_ptr( class );
962 return retval;
966 /***********************************************************************
967 * SetClassLongW (USER32.@)
969 DWORD WINAPI SetClassLongW( HWND hwnd, INT offset, LONG newval )
971 return CLASS_SetClassLong( hwnd, offset, newval, sizeof(LONG), TRUE );
975 /***********************************************************************
976 * SetClassLongA (USER32.@)
978 DWORD WINAPI SetClassLongA( HWND hwnd, INT offset, LONG newval )
980 return CLASS_SetClassLong( hwnd, offset, newval, sizeof(LONG), FALSE );
984 /***********************************************************************
985 * GetClassNameA (USER32.@)
987 INT WINAPI GetClassNameA( HWND hwnd, LPSTR buffer, INT count )
989 WCHAR tmpbuf[MAX_ATOM_LEN + 1];
990 DWORD len;
992 if (count <= 0) return 0;
993 if (!GetClassNameW( hwnd, tmpbuf, sizeof(tmpbuf)/sizeof(WCHAR) )) return 0;
994 RtlUnicodeToMultiByteN( buffer, count - 1, &len, tmpbuf, strlenW(tmpbuf) * sizeof(WCHAR) );
995 buffer[len] = 0;
996 return len;
1000 /***********************************************************************
1001 * GetClassNameW (USER32.@)
1003 INT WINAPI GetClassNameW( HWND hwnd, LPWSTR buffer, INT count )
1005 CLASS *class;
1006 INT ret;
1008 TRACE("%p %p %d\n", hwnd, buffer, count);
1010 if (count <= 0) return 0;
1012 if (!(class = get_class_ptr( hwnd, FALSE ))) return 0;
1014 if (class == CLASS_OTHER_PROCESS)
1016 WCHAR tmpbuf[MAX_ATOM_LEN + 1];
1018 ret = GlobalGetAtomNameW( GetClassLongW( hwnd, GCW_ATOM ), tmpbuf, MAX_ATOM_LEN + 1 );
1019 if (ret)
1021 ret = min(count - 1, ret);
1022 memcpy(buffer, tmpbuf, ret * sizeof(WCHAR));
1023 buffer[ret] = 0;
1026 else
1028 lstrcpynW( buffer, class->name, count );
1029 release_class_ptr( class );
1030 ret = strlenW( buffer );
1032 return ret;
1036 /***********************************************************************
1037 * RealGetWindowClassA (USER32.@)
1039 UINT WINAPI RealGetWindowClassA( HWND hwnd, LPSTR buffer, UINT count )
1041 return GetClassNameA( hwnd, buffer, count );
1045 /***********************************************************************
1046 * RealGetWindowClassW (USER32.@)
1048 UINT WINAPI RealGetWindowClassW( HWND hwnd, LPWSTR buffer, UINT count )
1050 return GetClassNameW( hwnd, buffer, count );
1054 /***********************************************************************
1055 * GetClassInfoA (USER32.@)
1057 BOOL WINAPI GetClassInfoA( HINSTANCE hInstance, LPCSTR name, WNDCLASSA *wc )
1059 WNDCLASSEXA wcex;
1060 UINT ret = GetClassInfoExA( hInstance, name, &wcex );
1062 if (ret)
1064 wc->style = wcex.style;
1065 wc->lpfnWndProc = wcex.lpfnWndProc;
1066 wc->cbClsExtra = wcex.cbClsExtra;
1067 wc->cbWndExtra = wcex.cbWndExtra;
1068 wc->hInstance = wcex.hInstance;
1069 wc->hIcon = wcex.hIcon;
1070 wc->hCursor = wcex.hCursor;
1071 wc->hbrBackground = wcex.hbrBackground;
1072 wc->lpszMenuName = wcex.lpszMenuName;
1073 wc->lpszClassName = wcex.lpszClassName;
1075 return ret;
1079 /***********************************************************************
1080 * GetClassInfoW (USER32.@)
1082 BOOL WINAPI GetClassInfoW( HINSTANCE hInstance, LPCWSTR name, WNDCLASSW *wc )
1084 WNDCLASSEXW wcex;
1085 UINT ret = GetClassInfoExW( hInstance, name, &wcex );
1087 if (ret)
1089 wc->style = wcex.style;
1090 wc->lpfnWndProc = wcex.lpfnWndProc;
1091 wc->cbClsExtra = wcex.cbClsExtra;
1092 wc->cbWndExtra = wcex.cbWndExtra;
1093 wc->hInstance = wcex.hInstance;
1094 wc->hIcon = wcex.hIcon;
1095 wc->hCursor = wcex.hCursor;
1096 wc->hbrBackground = wcex.hbrBackground;
1097 wc->lpszMenuName = wcex.lpszMenuName;
1098 wc->lpszClassName = wcex.lpszClassName;
1100 return ret;
1104 /***********************************************************************
1105 * GetClassInfoExA (USER32.@)
1107 BOOL WINAPI GetClassInfoExA( HINSTANCE hInstance, LPCSTR name, WNDCLASSEXA *wc )
1109 ATOM atom;
1110 CLASS *classPtr;
1112 TRACE("%p %s %p\n", hInstance, debugstr_a(name), wc);
1114 if (!hInstance) hInstance = user32_module;
1116 if (!IS_INTRESOURCE(name))
1118 WCHAR nameW[MAX_ATOM_LEN + 1];
1119 if (!MultiByteToWideChar( CP_ACP, 0, name, -1, nameW, sizeof(nameW)/sizeof(WCHAR) ))
1120 return FALSE;
1121 classPtr = CLASS_FindClass( nameW, hInstance );
1123 else classPtr = CLASS_FindClass( (LPCWSTR)name, hInstance );
1125 if (!classPtr)
1127 SetLastError( ERROR_CLASS_DOES_NOT_EXIST );
1128 return FALSE;
1130 wc->style = classPtr->style;
1131 wc->lpfnWndProc = WINPROC_GetProc( classPtr->winproc, FALSE );
1132 wc->cbClsExtra = classPtr->cbClsExtra;
1133 wc->cbWndExtra = classPtr->cbWndExtra;
1134 wc->hInstance = (hInstance == user32_module) ? 0 : hInstance;
1135 wc->hIcon = classPtr->hIcon;
1136 wc->hIconSm = classPtr->hIconSm;
1137 wc->hCursor = classPtr->hCursor;
1138 wc->hbrBackground = classPtr->hbrBackground;
1139 wc->lpszMenuName = CLASS_GetMenuNameA( classPtr );
1140 wc->lpszClassName = name;
1141 atom = classPtr->atomName;
1142 release_class_ptr( classPtr );
1144 /* We must return the atom of the class here instead of just TRUE. */
1145 return atom;
1149 /***********************************************************************
1150 * GetClassInfoExW (USER32.@)
1152 BOOL WINAPI GetClassInfoExW( HINSTANCE hInstance, LPCWSTR name, WNDCLASSEXW *wc )
1154 ATOM atom;
1155 CLASS *classPtr;
1157 TRACE("%p %s %p\n", hInstance, debugstr_w(name), wc);
1159 if (!hInstance) hInstance = user32_module;
1161 if (!(classPtr = CLASS_FindClass( name, hInstance )))
1163 SetLastError( ERROR_CLASS_DOES_NOT_EXIST );
1164 return FALSE;
1166 wc->style = classPtr->style;
1167 wc->lpfnWndProc = WINPROC_GetProc( classPtr->winproc, TRUE );
1168 wc->cbClsExtra = classPtr->cbClsExtra;
1169 wc->cbWndExtra = classPtr->cbWndExtra;
1170 wc->hInstance = (hInstance == user32_module) ? 0 : hInstance;
1171 wc->hIcon = (HICON)classPtr->hIcon;
1172 wc->hIconSm = (HICON)classPtr->hIconSm;
1173 wc->hCursor = (HCURSOR)classPtr->hCursor;
1174 wc->hbrBackground = (HBRUSH)classPtr->hbrBackground;
1175 wc->lpszMenuName = CLASS_GetMenuNameW( classPtr );
1176 wc->lpszClassName = name;
1177 atom = classPtr->atomName;
1178 release_class_ptr( classPtr );
1180 /* We must return the atom of the class here instead of just TRUE. */
1181 return atom;
1185 #if 0 /* toolhelp is in kernel, so this cannot work */
1187 /***********************************************************************
1188 * ClassFirst (TOOLHELP.69)
1190 BOOL16 WINAPI ClassFirst16( CLASSENTRY *pClassEntry )
1192 TRACE("%p\n",pClassEntry);
1193 pClassEntry->wNext = 1;
1194 return ClassNext16( pClassEntry );
1198 /***********************************************************************
1199 * ClassNext (TOOLHELP.70)
1201 BOOL16 WINAPI ClassNext16( CLASSENTRY *pClassEntry )
1203 int i;
1204 CLASS *class = firstClass;
1206 TRACE("%p\n",pClassEntry);
1208 if (!pClassEntry->wNext) return FALSE;
1209 for (i = 1; (i < pClassEntry->wNext) && class; i++) class = class->next;
1210 if (!class)
1212 pClassEntry->wNext = 0;
1213 return FALSE;
1215 pClassEntry->hInst = class->hInstance;
1216 pClassEntry->wNext++;
1217 GlobalGetAtomNameA( class->atomName, pClassEntry->szClassName,
1218 sizeof(pClassEntry->szClassName) );
1219 return TRUE;
1221 #endif
1223 /* 64bit versions */
1225 #ifdef GetClassLongPtrA
1226 #undef GetClassLongPtrA
1227 #endif
1229 #ifdef GetClassLongPtrW
1230 #undef GetClassLongPtrW
1231 #endif
1233 #ifdef SetClassLongPtrA
1234 #undef SetClassLongPtrA
1235 #endif
1237 #ifdef SetClassLongPtrW
1238 #undef SetClassLongPtrW
1239 #endif
1241 /***********************************************************************
1242 * GetClassLongPtrA (USER32.@)
1244 ULONG_PTR WINAPI GetClassLongPtrA( HWND hwnd, INT offset )
1246 return CLASS_GetClassLong( hwnd, offset, sizeof(ULONG_PTR), FALSE );
1249 /***********************************************************************
1250 * GetClassLongPtrW (USER32.@)
1252 ULONG_PTR WINAPI GetClassLongPtrW( HWND hwnd, INT offset )
1254 return CLASS_GetClassLong( hwnd, offset, sizeof(ULONG_PTR), TRUE );
1257 /***********************************************************************
1258 * SetClassLongPtrW (USER32.@)
1260 ULONG_PTR WINAPI SetClassLongPtrW( HWND hwnd, INT offset, LONG_PTR newval )
1262 return CLASS_SetClassLong( hwnd, offset, newval, sizeof(LONG_PTR), TRUE );
1265 /***********************************************************************
1266 * SetClassLongPtrA (USER32.@)
1268 ULONG_PTR WINAPI SetClassLongPtrA( HWND hwnd, INT offset, LONG_PTR newval )
1270 return CLASS_SetClassLong( hwnd, offset, newval, sizeof(LONG_PTR), FALSE );