handle.h 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. /*
  2. * Server-side handle definitions
  3. *
  4. * Copyright (C) 1999 Alexandre Julliard
  5. *
  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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
  19. */
  20. #ifndef __WINE_SERVER_HANDLE_H
  21. #define __WINE_SERVER_HANDLE_H
  22. #include <stdlib.h>
  23. #include "windef.h"
  24. #include "wine/server_protocol.h"
  25. struct process;
  26. struct object_ops;
  27. struct namespace;
  28. struct unicode_str;
  29. /* handle functions */
  30. /* alloc_handle takes a void *obj for convenience, but you better make sure */
  31. /* that the thing pointed to starts with a struct object... */
  32. extern obj_handle_t alloc_handle( struct process *process, void *obj,
  33. unsigned int access, unsigned int attr );
  34. extern obj_handle_t alloc_handle_no_access_check( struct process *process, void *ptr,
  35. unsigned int access, unsigned int attr );
  36. extern unsigned int close_handle( struct process *process, obj_handle_t handle );
  37. extern struct object *get_handle_obj( struct process *process, obj_handle_t handle,
  38. unsigned int access, const struct object_ops *ops );
  39. extern unsigned int get_handle_access( struct process *process, obj_handle_t handle );
  40. extern obj_handle_t duplicate_handle( struct process *src, obj_handle_t src_handle, struct process *dst,
  41. unsigned int access, unsigned int attr, unsigned int options );
  42. extern obj_handle_t open_object( struct process *process, obj_handle_t parent, unsigned int access,
  43. const struct object_ops *ops, const struct unicode_str *name,
  44. unsigned int attr );
  45. extern obj_handle_t find_inherited_handle( struct process *process, const struct object_ops *ops );
  46. extern void close_process_handles( struct process *process );
  47. extern struct handle_table *alloc_handle_table( struct process *process, int count );
  48. extern struct handle_table *copy_handle_table( struct process *process, struct process *parent,
  49. const obj_handle_t *handles, unsigned int handle_count,
  50. const obj_handle_t *std_handles );
  51. extern unsigned int get_handle_table_count( struct process *process);
  52. #endif /* __WINE_SERVER_HANDLE_H */