blob: 6b8872c8ec6e052c986094491b1d3a1bca676ce6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifdef E_TYPEDEFS
#else
#ifndef E_FILEREG_H
#define E_FILEREG_H
EINTERN int e_filereg_init(void);
EINTERN int e_filereg_shutdown(void);
EAPI int e_filereg_register(const char * path);
EAPI void e_filereg_deregister(const char * path);
EAPI Eina_Bool e_filereg_file_protected(const char * path);
#endif
#endif
|