File: dat_dictionary.h

package info (click to toggle)
dapl 2.0.19-1.1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 4,300 kB
  • sloc: ansic: 39,217; sh: 10,475; makefile: 529
file content (112 lines) | stat: -rw-r--r-- 3,704 bytes parent folder | download | duplicates (5)
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
107
108
109
110
111
112
/*
 * 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_dictionary.h
 *
 * PURPOSE: dictionary data structure
 *
 * $Id: dat_dictionary.h,v 1.10 2005/03/24 05:58:27 jlentini Exp $
 **********************************************************************/

#ifndef _DAT_DICTIONARY_H_
#define _DAT_DICTIONARY_H_


#include "dat_osd.h"


/*********************************************************************
 *                                                                   *
 * Typedefs                                                          *
 *                                                                   *
 *********************************************************************/

typedef struct DAT_DICTIONARY   DAT_DICTIONARY;
typedef void *                  DAT_DICTIONARY_DATA;
typedef void *                  DAT_DICTIONARY_ENTRY;


/*********************************************************************
 *                                                                   *
 * Function Prototypes                                               *
 *                                                                   *
 *********************************************************************/

extern DAT_RETURN
dat_dictionary_create (
    OUT DAT_DICTIONARY **pp_dictionary);

extern DAT_RETURN
dat_dictionary_destroy (
    IN  DAT_DICTIONARY *p_dictionary);

extern DAT_RETURN
dat_dictionary_size (
    IN  DAT_DICTIONARY *p_dictionary,
    OUT DAT_COUNT *p_size);

extern DAT_RETURN
dat_dictionary_entry_create (
    OUT DAT_DICTIONARY_ENTRY *p_entry);

extern DAT_RETURN
dat_dictionary_entry_destroy (
    IN  DAT_DICTIONARY_ENTRY entry);

extern DAT_RETURN
dat_dictionary_insert (
    IN  DAT_DICTIONARY *p_dictionary,
    IN  DAT_DICTIONARY_ENTRY entry,
    IN  const DAT_PROVIDER_INFO *key,
    IN  DAT_DICTIONARY_DATA data);

extern DAT_RETURN
dat_dictionary_search (
    IN  DAT_DICTIONARY *p_dictionary,
    IN  const DAT_PROVIDER_INFO *key,
    OUT DAT_DICTIONARY_DATA *p_data);

extern DAT_RETURN
dat_dictionary_enumerate (
    IN  DAT_DICTIONARY *p_dictionary,
    IN  DAT_DICTIONARY_DATA array[],
    IN  DAT_COUNT array_size);


extern DAT_RETURN
dat_dictionary_remove (
    IN  DAT_DICTIONARY *p_dictionary,
    IN  DAT_DICTIONARY_ENTRY *p_entry,
    IN  const DAT_PROVIDER_INFO *key,
    OUT DAT_DICTIONARY_DATA *p_data);

#endif