00001 00011 #ifndef _ENTRYLIST_PATH_H_ 00012 #define _ENTRYLIST_PATH_H_ 00013 00014 #include "iarray.h" 00015 00019 typedef struct _el_path_s { 00020 struct _el_path_s * next; 00021 struct _el_path_s * prev; 00022 int refcount; 00023 char path[4]; 00024 } el_path_t; 00025 00029 extern el_path_t * pathes; 00030 00031 int elpath_init(void); 00032 void elpath_shutdown(void); 00033 el_path_t * elpath_add(const char * path); 00034 void elpath_del(el_path_t *elpath); 00035 el_path_t * elpath_addref(el_path_t *path); 00036 00037 00038 #endif /* #define _ENTRYLIST_PATH_H_ */
dcplaya documentation version 2.0 | Generated on November 2004 by doxygen 1.3.6 |