* Streamline some TiVo ifdefs.

This commit is contained in:
Justin Maggard
2012-06-30 00:26:55 +00:00
parent 61fbce18ba
commit 5f14c68597
5 changed files with 37 additions and 36 deletions

View File

@ -22,6 +22,7 @@
* along with MiniDLNA. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#ifdef TIVO_SUPPORT
#include <sqlite3.h>
@ -37,4 +38,9 @@ decodeString(char *string, int inplace);
void
TiVoRandomSeedFunc(sqlite3_context *context, int argc, sqlite3_value **argv);
int
is_tivo_file(const char *path);
#else
#define decodeString(X, Y) ({})
#endif