source: titan/minidlna-1.0.22/tivo_utils.h @ 15349

Last change on this file since 15349 was 13567, checked in by obi, 12 years ago

[titan] add minidlna-1.0.22 first step

File size: 1.2 KB
Line 
1/* TiVo helper functions
2 *
3 * Project : minidlna
4 * Website : http://sourceforge.net/projects/minidlna/
5 * Author  : Justin Maggard
6 *
7 * MiniDLNA media server
8 * Copyright (C) 2009  Justin Maggard
9 *
10 * This file is part of MiniDLNA.
11 *
12 * MiniDLNA is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License version 2 as
14 * published by the Free Software Foundation.
15 *
16 * MiniDLNA is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with MiniDLNA. If not, see <http://www.gnu.org/licenses/>.
23 */
24#include "config.h"
25#ifdef TIVO_SUPPORT
26#include <sqlite3.h>
27
28struct sqlite3PrngType {
29  unsigned char isInit;          /* True if initialized */
30  unsigned char i, j;            /* State variables */
31  unsigned char s[256];          /* State variables */
32} sqlite3Prng;
33
34char *
35decodeString(char * string, int inplace);
36
37void
38TiVoRandomSeedFunc(sqlite3_context *context, int argc, sqlite3_value **argv);
39
40#endif
Note: See TracBrowser for help on using the repository browser.