/* TiVo helper functions * * Project : minidlna * Website : http://sourceforge.net/projects/minidlna/ * Author : Justin Maggard * Copyright (c) 2009 Justin Maggard * This software is subject to the conditions detailed in the * LICENCE file provided in this distribution. * */ #include "config.h" #ifdef TIVO_SUPPORT #include struct sqlite3PrngType { unsigned char isInit; /* True if initialized */ unsigned char i, j; /* State variables */ unsigned char s[256]; /* State variables */ } sqlite3Prng; char * decodeString(char * string, int inplace); void TiVoRandomSeedFunc(sqlite3_context *context, int argc, sqlite3_value **argv); #endif