zapit/include/zapit/channel.h: add NOT_FOUND flag to mark channels not present in services.xml

This commit is contained in:
[CST] Focus
2013-01-28 11:48:38 +04:00
parent 8a2b6270c7
commit 75cc4b4c9e

View File

@@ -168,7 +168,10 @@ class CZapitChannel
typedef enum channel_flags {
NEW = 0x01,
REMOVED = 0x02,
UPDATED = 0x04
UPDATED = 0x04,
NOT_FOUND = 0x08,
PRESENT = 0x05, // NEW + UPDATED
ANY = 0xFF
} channel_flags_t;
casys_map_t camap;