blob: fe89874ac21f94384963d7b37e47afefa0630730 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/** BEGIN COPYRIGHT BLOCK
* Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
* Copyright (C) 2005 Red Hat, Inc.
* All rights reserved.
* END COPYRIGHT BLOCK **/
#ifndef _avadb_h_
#define _avadb_h_
#define USE_NSAPI
USE_NSAPI int AddEntry (char *key, char *value);
USE_NSAPI int DeleteEntry (char *key);
USE_NSAPI char *GetValue (char *key);
#endif /*_avadb_h_*/
|