/*-------------------------------------------------------------------------*/
/*!
 * \file	registry.h
 * \brief	Declares several helper routines for reading from the registry.
 *
 * File:	registry.h
 *
 * Purpose:
 *
 *	Device drivers read lots of configuration information out of the registry.
 *	This file contains the declaration of several functions which read
 *	specific information from the registry.
 *
 * Copyright (c) 2002-2005 Logic Product Development
 *
 * NOTICE:
 *	This file contains source code, ideas, techniques, and information
 *	(the Information) which are Proprietary and Confidential Information
 *	of Logic Product Development, Inc.  This Information may not be used
 *	by or disclosed to any third party except under written license, and
 *	shall be subject to the limitations prescribed under license.
 */
/*-------------------------------------------------------------------------*/

#ifndef _REGISTRY_H_
#define _REGISTRY_H_


HKEY    get_active_reg_key(ULONG reg_key);
DWORD   read_irq_from_reg(HKEY active_key);
DWORD	read_gpio_pin_from_reg(HKEY active_key);
DWORD	read_address_base_from_reg(HKEY active_key);
WCHAR * read_isr_dll_from_reg(HKEY active_key);
WCHAR * read_isr_handler_from_reg(HKEY active_key);

#endif /* closes #ifndef _REGISTRY_H_ */

