| /* |
| * dlls/rsaenh/handle.h |
| * Support code to manage HANDLE tables. |
| * |
| * Copyright 1998 Alexandre Julliard |
| * Copyright 2002-2004 Mike McCormack for CodeWeavers |
| * Copyright 2004 Michael Jung |
| * |
| * 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 |
| * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA |
| */ |
| |
| #ifndef __WINE_HANDLE_H |
| #define __WINE_HANDLE_H |
| |
| #include "wincrypt.h" |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
| |
| #define TABLE_SIZE_INCREMENT 32 |
| |
| struct tagOBJECTHDR; |
| typedef struct tagOBJECTHDR OBJECTHDR; |
| typedef void (*DESTRUCTOR)(OBJECTHDR *object); |
| struct tagOBJECTHDR |
| { |
| DWORD dwType; |
| LONG refcount; |
| DESTRUCTOR destructor; |
| }; |
| |
| struct handle_table_entry |
| { |
| OBJECTHDR *pObject; |
| unsigned int iNextFree; |
| }; |
| |
| struct handle_table |
| { |
| unsigned int iEntries; |
| unsigned int iFirstFree; |
| struct handle_table_entry *paEntries; |
| CRITICAL_SECTION mutex; |
| }; |
| |
| void init_handle_table (struct handle_table *lpTable) DECLSPEC_HIDDEN; |
| void destroy_handle_table(struct handle_table *lpTable) DECLSPEC_HIDDEN; |
| BOOL release_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType) DECLSPEC_HIDDEN; |
| BOOL copy_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType, HCRYPTKEY *copy) DECLSPEC_HIDDEN; |
| BOOL lookup_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType, OBJECTHDR **lplpObject) DECLSPEC_HIDDEN; |
| BOOL is_valid_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType) DECLSPEC_HIDDEN; |
| |
| HCRYPTKEY new_object (struct handle_table *lpTable, size_t cbSize, DWORD dwType, DESTRUCTOR destructor, |
| OBJECTHDR **ppObject) DECLSPEC_HIDDEN; |
| |
| #ifdef __cplusplus |
| } |
| #endif |
| |
| #endif /* __WINE_HANDLE_H */ |