blob: e4229a08b7566eb04dd0b381a71c37a497a665f5 [file] [log] [blame]
Alexandre Julliard1a66d222001-08-28 18:44:52 +00001/*
2 * Wine server USER definitions
3 *
4 * Copyright (C) 2001 Alexandre Julliard
Alexandre Julliard0799c1a2002-03-09 23:29:33 +00005 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
Alexandre Julliard1a66d222001-08-28 18:44:52 +000019 */
20
21#ifndef __WINE_SERVER_USER_H
22#define __WINE_SERVER_USER_H
23
24#include "wine/server_protocol.h"
25
26struct thread;
27struct window;
Alexandre Julliard805bdc52001-11-13 22:23:48 +000028struct msg_queue;
Alexandre Julliardd55e7f12003-07-03 18:16:48 +000029struct hook_table;
Alexandre Julliard1a66d222001-08-28 18:44:52 +000030
31enum user_object
32{
Alexandre Julliard02861352002-10-29 00:41:42 +000033 USER_WINDOW = 1,
34 USER_HOOK
Alexandre Julliard1a66d222001-08-28 18:44:52 +000035};
36
37/* user handles functions */
38
39extern user_handle_t alloc_user_handle( void *ptr, enum user_object type );
40extern void *get_user_object( user_handle_t handle, enum user_object type );
41extern void *get_user_object_handle( user_handle_t *handle, enum user_object type );
Alexandre Julliardbc878ef2001-09-12 17:09:24 +000042extern user_handle_t get_user_full_handle( user_handle_t handle );
Alexandre Julliard1a66d222001-08-28 18:44:52 +000043extern void *free_user_handle( user_handle_t handle );
44extern void *next_user_handle( user_handle_t *handle, enum user_object type );
45
Ulrich Czekallab2df5f92003-06-23 23:02:02 +000046/* clipboard functions */
47
48extern void cleanup_clipboard_thread( struct thread *thread );
49
Alexandre Julliard14e68ba2002-11-20 19:54:32 +000050/* hook functions */
51
52extern void close_global_hooks(void);
53
Alexandre Julliard1a66d222001-08-28 18:44:52 +000054/* queue functions */
55
Alexandre Julliard31022d62002-08-16 23:30:41 +000056extern void free_msg_queue( struct thread *thread );
Alexandre Julliardd55e7f12003-07-03 18:16:48 +000057extern struct hook_table *get_queue_hooks( struct thread *thread );
58extern void set_queue_hooks( struct thread *thread, struct hook_table *hooks );
Alexandre Julliard805bdc52001-11-13 22:23:48 +000059extern void inc_queue_paint_count( struct thread *thread, int incr );
Alexandre Julliard1a66d222001-08-28 18:44:52 +000060extern void queue_cleanup_window( struct thread *thread, user_handle_t win );
Alexandre Julliardab5063b2002-10-11 18:50:15 +000061extern int attach_thread_input( struct thread *thread_from, struct thread *thread_to );
Alexandre Julliard81f2a732002-03-23 20:43:52 +000062extern void post_message( user_handle_t win, unsigned int message,
63 unsigned int wparam, unsigned int lparam );
Alexandre Julliard1a66d222001-08-28 18:44:52 +000064
65/* window functions */
66
67extern void destroy_thread_windows( struct thread *thread );
Alexandre Julliarda09da0c2001-09-21 21:08:40 +000068extern int is_child_window( user_handle_t parent, user_handle_t child );
Alexandre Julliard5030bda2002-10-11 23:41:06 +000069extern int is_top_level_window( user_handle_t window );
70extern int make_window_active( user_handle_t window );
Alexandre Julliard81f2a732002-03-23 20:43:52 +000071extern struct thread *get_window_thread( user_handle_t handle );
Alexandre Julliard242e3952003-01-08 00:27:58 +000072extern user_handle_t window_from_point( int x, int y );
Alexandre Julliard47f98212001-11-14 21:28:36 +000073extern user_handle_t find_window_to_repaint( user_handle_t parent, struct thread *thread );
Alexandre Julliard1a66d222001-08-28 18:44:52 +000074
75#endif /* __WINE_SERVER_USER_H */