summaryrefslogtreecommitdiff
path: root/apps/filetypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/filetypes.h')
-rw-r--r--apps/filetypes.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/filetypes.h b/apps/filetypes.h
index 767a26fc1f..fc1022a014 100644
--- a/apps/filetypes.h
+++ b/apps/filetypes.h
@@ -53,10 +53,15 @@
53struct filetype { 53struct filetype {
54 char* extension; 54 char* extension;
55 int tree_attr; 55 int tree_attr;
56};
57
58struct fileattr_voice {
59 int tree_attr;
56 int voiceclip; 60 int voiceclip;
57}; 61};
58 62
59void tree_get_filetypes(const struct filetype**, int*) INIT_ATTR; 63void tree_get_filetypes(const struct filetype**, int*) INIT_ATTR;
64long tree_filetype_voiceclip(int attr) INIT_ATTR;
60 65
61/* init the filetypes structs. 66/* init the filetypes structs.
62 uses audio buffer for storage, so call early in init... */ 67 uses audio buffer for storage, so call early in init... */