Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/blenfont/BLF_api.h')
-rw-r--r--source/blender/blenfont/BLF_api.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/source/blender/blenfont/BLF_api.h b/source/blender/blenfont/BLF_api.h
index 0a4ed0d7020..d91fbbf0fa9 100644
--- a/source/blender/blenfont/BLF_api.h
+++ b/source/blender/blenfont/BLF_api.h
@@ -49,4 +49,20 @@ int BLF_lang_error(void);
/* Return the code string for the specified language code. */
char *BLF_lang_find_code(short langid);
+#if 0
+
+/* Add a path to the font dir paths. */
+void BLF_dir_add(const char *path);
+
+/* Remove a path from the font dir paths. */
+void BLF_dir_rem(const char *path);
+
+/* Return an array with all the font dir (this can be used for filesel) */
+char **BLF_dir_get(int *ndir);
+
+/* Free the data return by BLF_dir_get. */
+void BLF_dir_free(char **dirs, int count);
+
+#endif /* zero!! */
+
#endif /* BLF_API_H */