1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
/*
* Copyright (c) 2002-2005, Network Appliance, Inc. All rights reserved.
*
* This Software is licensed under one of the following licenses:
*
* 1) under the terms of the "Common Public License 1.0" a copy of which is
* in the file LICENSE.txt in the root directory. The license is also
* available from the Open Source Initiative, see
* http://www.opensource.org/licenses/cpl.php.
*
* 2) under the terms of the "The BSD License" a copy of which is in the file
* LICENSE2.txt in the root directory. The license is also available from
* the Open Source Initiative, see
* http://www.opensource.org/licenses/bsd-license.php.
*
* 3) under the terms of the "GNU General Public License (GPL) Version 2" a
* copy of which is in the file LICENSE3.txt in the root directory. The
* license is also available from the Open Source Initiative, see
* http://www.opensource.org/licenses/gpl-license.php.
*
* Licensee has the right to choose one of the above licenses.
*
* Redistributions of source code must retain the above copyright
* notice and one of the license notices.
*
* Redistributions in binary form must reproduce both the above copyright
* notice, one of the license notices in the documentation
* and/or other materials provided with the distribution.
*/
/**********************************************************************
*
* HEADER: dat_init.h
*
* PURPOSE: DAT registry global data
*
* $Id: dat_init.h,v 1.16 2005/03/24 05:58:27 jlentini Exp $
**********************************************************************/
#ifndef _DAT_INIT_H_
#define _DAT_INIT_H_
#include "dat_osd.h"
/*********************************************************************
* *
* Enumerations *
* *
*********************************************************************/
typedef enum
{
DAT_MODULE_STATE_UNINITIALIZED,
DAT_MODULE_STATE_INITIALIZING,
DAT_MODULE_STATE_INITIALIZED,
DAT_MODULE_STATE_DEINITIALIZING,
DAT_MODULE_STATE_DEINITIALIZED
} DAT_MODULE_STATE;
/*********************************************************************
* *
* Function Prototypes *
* *
*********************************************************************/
DAT_MODULE_STATE
dat_module_get_state ( void ) ;
#if defined(_MSC_VER) || defined(_WIN64) || defined(_WIN32)
/* NT. MSC compiler, Win32/64 platform */
void
dat_init ( void );
void
dat_fini ( void );
#else /* GNU C */
void
dat_init ( void ) __attribute__ ((constructor));
void
dat_fini ( void ) __attribute__ ((destructor));
#endif
extern DAT_RETURN
dats_handle_vector_init ( void );
extern DAT_IA_HANDLE
dats_set_ia_handle (
IN DAT_IA_HANDLE ia_handle);
extern DAT_RETURN
dats_get_ia_handle(
IN DAT_IA_HANDLE handle,
OUT DAT_IA_HANDLE *ia_handle_p);
extern DAT_BOOLEAN
dats_is_ia_handle (
IN DAT_HANDLE dat_handle);
extern DAT_RETURN
dats_free_ia_handle(
IN DAT_IA_HANDLE handle);
#endif
|