1999-05-15 12:48:19 +02:00
|
|
|
/*
|
|
|
|
* Server-side handle definitions
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 Alexandre Julliard
|
2002-03-10 00:29:33 +01:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
1999-05-15 12:48:19 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_SERVER_HANDLE_H
|
|
|
|
#define __WINE_SERVER_HANDLE_H
|
|
|
|
|
1999-06-22 19:26:53 +02:00
|
|
|
#include <stdlib.h>
|
1999-11-25 22:30:24 +01:00
|
|
|
#include "windef.h"
|
2001-07-19 02:35:37 +02:00
|
|
|
#include "wine/server_protocol.h"
|
1999-06-22 19:26:53 +02:00
|
|
|
|
1999-05-15 12:48:19 +02:00
|
|
|
struct process;
|
|
|
|
struct object_ops;
|
2002-10-03 01:49:30 +02:00
|
|
|
struct namespace;
|
2005-11-18 17:31:18 +01:00
|
|
|
struct unicode_str;
|
1999-05-15 12:48:19 +02:00
|
|
|
|
|
|
|
/* handle functions */
|
|
|
|
|
|
|
|
/* alloc_handle takes a void *obj for convenience, but you better make sure */
|
|
|
|
/* that the thing pointed to starts with a struct object... */
|
2002-05-30 22:12:58 +02:00
|
|
|
extern obj_handle_t alloc_handle( struct process *process, void *obj,
|
2005-12-09 13:58:25 +01:00
|
|
|
unsigned int access, unsigned int attr );
|
2007-11-05 15:23:36 +01:00
|
|
|
extern obj_handle_t alloc_handle_no_access_check( struct process *process, void *ptr,
|
|
|
|
unsigned int access, unsigned int attr );
|
2006-11-02 20:52:05 +01:00
|
|
|
extern int close_handle( struct process *process, obj_handle_t handle );
|
2002-05-30 22:12:58 +02:00
|
|
|
extern struct object *get_handle_obj( struct process *process, obj_handle_t handle,
|
1999-05-15 12:48:19 +02:00
|
|
|
unsigned int access, const struct object_ops *ops );
|
2005-04-24 19:35:52 +02:00
|
|
|
extern unsigned int get_handle_access( struct process *process, obj_handle_t handle );
|
2002-05-30 22:12:58 +02:00
|
|
|
extern obj_handle_t duplicate_handle( struct process *src, obj_handle_t src_handle, struct process *dst,
|
2005-12-09 13:58:25 +01:00
|
|
|
unsigned int access, unsigned int attr, unsigned int options );
|
2005-11-18 17:31:18 +01:00
|
|
|
extern obj_handle_t open_object( const struct namespace *namespace, const struct unicode_str *name,
|
2005-10-27 20:30:37 +02:00
|
|
|
const struct object_ops *ops, unsigned int access, unsigned int attr );
|
2002-10-03 01:49:30 +02:00
|
|
|
extern obj_handle_t find_inherited_handle( struct process *process, const struct object_ops *ops );
|
2007-12-05 16:45:32 +01:00
|
|
|
extern obj_handle_t enumerate_handles( struct process *process, const struct object_ops *ops,
|
|
|
|
unsigned int *index );
|
2002-10-03 01:49:30 +02:00
|
|
|
extern struct handle_table *alloc_handle_table( struct process *process, int count );
|
|
|
|
extern struct handle_table *copy_handle_table( struct process *process, struct process *parent );
|
2003-09-16 03:07:21 +02:00
|
|
|
extern unsigned int get_handle_table_count( struct process *process);
|
|
|
|
|
1999-05-15 12:48:19 +02:00
|
|
|
#endif /* __WINE_SERVER_HANDLE_H */
|