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

Origin commit data
------------------
Branch: ni/coolstream
Commit: 75cc4b4c9e
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2013-01-28 (Mon, 28 Jan 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
[CST] Focus
2013-01-28 11:48:38 +04:00
parent 45915aace0
commit 150fb7607c

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;