/** BEGIN COPYRIGHT BLOCK * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission. * Copyright (C) 2005 Red Hat, Inc. * 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 #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 */