diff options
author | David Walter Seikel | 2012-01-04 18:41:13 +1000 |
---|---|---|
committer | David Walter Seikel | 2012-01-04 18:41:13 +1000 |
commit | dd7595a3475407a7fa96a97393bae8c5220e8762 (patch) | |
tree | e341e911d7eb911a51684a7412ef7f7c7605d28e /libraries/evas/src/lib/file/evas_path.h | |
parent | Add the skeleton. (diff) | |
download | SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.zip SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.gz SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.bz2 SledjHamr-dd7595a3475407a7fa96a97393bae8c5220e8762.tar.xz |
Add the base Enlightenment Foundation Libraries - eina, eet, evas, ecore, embryo, and edje.
Note that embryo wont be used, but I'm not sure yet if you can build edje without it.
Diffstat (limited to '')
-rw-r--r-- | libraries/evas/src/lib/file/evas_path.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libraries/evas/src/lib/file/evas_path.h b/libraries/evas/src/lib/file/evas_path.h new file mode 100644 index 0000000..e0aa6bb --- /dev/null +++ b/libraries/evas/src/lib/file/evas_path.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #ifndef _EVAS_PATH_H | ||
2 | #define _EVAS_PATH_H | ||
3 | |||
4 | |||
5 | int evas_file_path_is_full_path (const char *path); | ||
6 | char *evas_file_path_join (const char *path, const char *end); | ||
7 | int evas_file_path_exists (const char *path); | ||
8 | int evas_file_path_is_file (const char *path); | ||
9 | int evas_file_path_is_dir (const char *path); | ||
10 | Eina_List *evas_file_path_list (char *path, const char *match, int match_case); | ||
11 | DATA64 evas_file_modified_time (const char *file); | ||
12 | char *evas_file_path_resolve (const char *file); | ||
13 | |||
14 | |||
15 | #endif /* _EVAS_PATH_H */ | ||