From 150fb7607c06993b64cd3c93281f56b4c6a72bbc Mon Sep 17 00:00:00 2001 From: "[CST] Focus" Date: Mon, 28 Jan 2013 11:48:38 +0400 Subject: [PATCH] zapit/include/zapit/channel.h: add NOT_FOUND flag to mark channels not present in services.xml Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/75cc4b4c9ec418de6b61d748ce18ffd93bda7c37 Author: [CST] Focus Date: 2013-01-28 (Mon, 28 Jan 2013) ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/zapit/include/zapit/channel.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/zapit/include/zapit/channel.h b/src/zapit/include/zapit/channel.h index 60d37f965..fd7a70b01 100644 --- a/src/zapit/include/zapit/channel.h +++ b/src/zapit/include/zapit/channel.h @@ -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;