comment out never used

Origin commit data
------------------
Commit: 9124c20f31
Author: Jacek Jendrzej <overx300@gmail.com>
Date: 2012-08-04 (Sat, 04 Aug 2012)
This commit is contained in:
Jacek Jendrzej
2012-08-04 10:03:19 +02:00
parent 68773d8e37
commit 41e57ce7bc
26 changed files with 149 additions and 85 deletions

View File

@@ -351,7 +351,8 @@ bool CZapitClient::receive_channel_list(BouquetChannelList& channels, const bool
}
return true;
}
#if 0
//never used
bool CZapitClient::receive_nchannel_list(BouquetNChannelList& channels)
{
CZapitMessages::responseGeneralInteger responseInteger;
@@ -374,7 +375,7 @@ bool CZapitClient::receive_nchannel_list(BouquetNChannelList& channels)
}
return true;
}
#endif
/* gets all channels that are in specified bouquet */
/* bouquets are numbered starting at 0 */
@@ -528,7 +529,8 @@ void CZapitClient::getVolume(unsigned int *left, unsigned int *right)
close_connection();
}
#if 0
//never used
delivery_system_t CZapitClient::getDeliverySystem(void)
{
send(CZapitMessages::CMD_GET_DELIVERY_SYSTEM, 0, 0);
@@ -542,6 +544,7 @@ delivery_system_t CZapitClient::getDeliverySystem(void)
return response.system;
}
#endif
#if 0
bool CZapitClient::get_current_TP(TP_params* TP)
{
@@ -1024,6 +1027,8 @@ void CZapitClient::setRecordMode(const bool activate)
send(CZapitMessages::CMD_SET_RECORD_MODE, (char*)&msg, sizeof(msg));
close_connection();
}
#if 0
//never used
void CZapitClient::setEventMode(const bool activate)
{
CZapitMessages::commandSetRecordMode msg;
@@ -1031,7 +1036,7 @@ void CZapitClient::setEventMode(const bool activate)
send(CZapitMessages::CMD_SET_EVENT_MODE, (char*)&msg, sizeof(msg));
close_connection();
}
#endif
bool CZapitClient::isRecordModeActive()
{
send(CZapitMessages::CMD_GET_RECORD_MODE);