[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 2/3] fix align SPDNotification and SPDNotificationType enums
From: |
Andrei Kholodnyi |
Subject: |
[PATCH 2/3] fix align SPDNotification and SPDNotificationType enums |
Date: |
Mon, 27 Sep 2010 20:39:47 +0200 |
order of notifications was different in SPDNotification and SPDNotificationType
enums
it is now align to SPDNotification enum
---
src/api/c/libspeechd.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/api/c/libspeechd.h b/src/api/c/libspeechd.h
index 2ac3a91..de6f6ed 100644
--- a/src/api/c/libspeechd.h
+++ b/src/api/c/libspeechd.h
@@ -104,10 +104,10 @@ typedef enum{
typedef enum{
SPD_EVENT_BEGIN,
SPD_EVENT_END,
+ SPD_EVENT_INDEX_MARK,
SPD_EVENT_CANCEL,
SPD_EVENT_PAUSE,
- SPD_EVENT_RESUME,
- SPD_EVENT_INDEX_MARK
+ SPD_EVENT_RESUME
}SPDNotificationType;
typedef enum{
--
1.6.0.4