summaryrefslogtreecommitdiff
path: root/apps/talk.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/talk.h')
-rw-r--r--apps/talk.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/talk.h b/apps/talk.h
index d07f955e67..213e1803d4 100644
--- a/apps/talk.h
+++ b/apps/talk.h
@@ -49,7 +49,7 @@ enum {
49 49
50/* make a "talkable" ID from number + unit 50/* make a "talkable" ID from number + unit
51 unit is upper 4 bits, number the remaining (in regular 2's complement) */ 51 unit is upper 4 bits, number the remaining (in regular 2's complement) */
52#define TALK_ID(n,u) ((u)<<UNIT_SHIFT | ((n) & ~(-1<<UNIT_SHIFT))) 52#define TALK_ID(n,u) (((long)(u))<<UNIT_SHIFT | ((n) & ~(-1L<<UNIT_SHIFT)))
53 53
54/* convenience macro to have both virtual pointer and ID as arguments */ 54/* convenience macro to have both virtual pointer and ID as arguments */
55#define STR(id) ID2P(id), id 55#define STR(id) ID2P(id), id
@@ -60,10 +60,10 @@ extern const char* const file_thumbnail_ext; /* ".talk" for file voicing */
60 60
61void talk_init(void); 61void talk_init(void);
62int talk_buffer_steal(void); /* claim the mp3 buffer e.g. for play/record */ 62int talk_buffer_steal(void); /* claim the mp3 buffer e.g. for play/record */
63int talk_id(int id, bool enqueue); /* play a voice ID from voicefont */ 63int talk_id(long id, bool enqueue); /* play a voice ID from voicefont */
64int talk_file(const char* filename, bool enqueue); /* play a thumbnail from file */ 64int talk_file(const char* filename, bool enqueue); /* play a thumbnail from file */
65int talk_number(int n, bool enqueue); /* say a number */ 65int talk_number(long n, bool enqueue); /* say a number */
66int talk_value(int n, int unit, bool enqueue); /* say a numeric value */ 66int talk_value(long n, int unit, bool enqueue); /* say a numeric value */
67int talk_spell(const char* spell, bool enqueue); /* spell a string */ 67int talk_spell(const char* spell, bool enqueue); /* spell a string */
68 68
69#endif /* __TALK_H__ */ 69#endif /* __TALK_H__ */