From 75cc4b4c9ec418de6b61d748ce18ffd93bda7c37 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 --- 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;