blob: 43dd0f4f75d01fd41059a178a2a5e63efa2ee5ec (
plain)
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
|
/** BEGIN COPYRIGHT BLOCK
* Copyright 2001 Sun Microsystems, Inc.
* Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
* All rights reserved.
* END COPYRIGHT BLOCK **/
/*
* Defines function used to determine the type of DS based on the
* key.
*/
#ifndef _LITEKEY_H
#define _LITEKEY_H
#include <dirlite_strings.h>
#ifdef __cplusplus
extern "C" {
#endif
#define DS_NORMAL_TYPE 0
#define DS_LITE_TYPE 1
int is_directory_lite ( char *path);
int generate_directory_key( int type);
int is_key_validNormalKey ( int key );
#ifdef __cplusplus
}
#endif
#endif /* _LITEKEY_H */
|