Faster live-edit reload. Experimental, should be tested

git-svn-id: file:///home/bas/coolstream_public_svn/THIRDPARTY/applications/neutrino-experimental@437 e54a6e83-5905-42d5-8d5c-058d10e6a962


Origin commit data
------------------
Commit: e99ada27a9
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2010-02-28 (Sun, 28 Feb 2010)
This commit is contained in:
[CST] Focus
2010-02-28 17:44:31 +00:00
parent 9a03929ecc
commit f42aa94eb8
13 changed files with 204 additions and 98 deletions

View File

@@ -874,9 +874,12 @@ void CZapitClient::renumChannellist()
/* saves current bouquet configuration to bouquets.xml*/
void CZapitClient::saveBouquets()
void CZapitClient::saveBouquets(const bool saveall)
{
send(CZapitMessages::CMD_BQ_SAVE_BOUQUETS);
CZapitMessages::commandBoolean msg;
msg.truefalse = saveall;
send(CZapitMessages::CMD_BQ_SAVE_BOUQUETS, (char*)&msg, sizeof(msg));
CZapitMessages::responseCmd response;
CBasicClient::receive_data((char* )&response, sizeof(response));