2004-11-04 22:15:32 +01:00
|
|
|
/*
|
|
|
|
* 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
|
2006-05-18 14:49:52 +02:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2004-11-04 22:15:32 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __WINE_HANDLE_H
|
|
|
|
#define __WINE_HANDLE_H
|
|
|
|
|
2007-04-21 21:48:57 +02:00
|
|
|
#include "wincrypt.h"
|
|
|
|
|
2004-11-04 22:15:32 +01:00
|
|
|
#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;
|
2006-07-28 16:46:11 +02:00
|
|
|
LONG refcount;
|
2004-11-04 22:15:32 +01:00
|
|
|
DESTRUCTOR destructor;
|
|
|
|
};
|
|
|
|
|
2009-02-09 13:03:35 +01:00
|
|
|
struct handle_table_entry
|
2004-11-04 22:15:32 +01:00
|
|
|
{
|
|
|
|
OBJECTHDR *pObject;
|
|
|
|
unsigned int iNextFree;
|
2009-02-09 13:03:35 +01:00
|
|
|
};
|
2004-11-04 22:15:32 +01:00
|
|
|
|
2009-02-09 13:03:35 +01:00
|
|
|
struct handle_table
|
2004-11-04 22:15:32 +01:00
|
|
|
{
|
|
|
|
unsigned int iEntries;
|
|
|
|
unsigned int iFirstFree;
|
2009-02-09 13:03:35 +01:00
|
|
|
struct handle_table_entry *paEntries;
|
2004-11-04 22:15:32 +01:00
|
|
|
CRITICAL_SECTION mutex;
|
2009-02-09 13:03:35 +01:00
|
|
|
};
|
2004-11-04 22:15:32 +01:00
|
|
|
|
2009-02-09 13:03:35 +01:00
|
|
|
void init_handle_table (struct handle_table *lpTable);
|
|
|
|
void destroy_handle_table(struct handle_table *lpTable);
|
|
|
|
int release_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType);
|
|
|
|
int copy_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType, HCRYPTKEY *copy);
|
|
|
|
int lookup_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType, OBJECTHDR **lplpObject);
|
|
|
|
int is_valid_handle (struct handle_table *lpTable, HCRYPTKEY handle, DWORD dwType);
|
2004-11-04 22:15:32 +01:00
|
|
|
|
2009-02-09 13:03:35 +01:00
|
|
|
HCRYPTKEY new_object (struct handle_table *lpTable, size_t cbSize, DWORD dwType, DESTRUCTOR destructor,
|
2004-11-04 22:15:32 +01:00
|
|
|
OBJECTHDR **ppObject);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __WINE_HANDLE_H */
|