* Add full support for SortOrder and Filter parameters from TiVo.
This commit is contained in:
13
tivo_utils.h
13
tivo_utils.h
@ -1,5 +1,16 @@
|
||||
#include "config.h"
|
||||
#ifdef TIVO_SUPPORT
|
||||
#include <sqlite3.h>
|
||||
|
||||
struct sqlite3PrngType {
|
||||
unsigned char isInit; /* True if initialized */
|
||||
unsigned char i, j; /* State variables */
|
||||
unsigned char s[256]; /* State variables */
|
||||
} sqlite3Prng;
|
||||
|
||||
char *
|
||||
decodeString(const char * string, int inplace);
|
||||
decodeString(char * string, int inplace);
|
||||
|
||||
void
|
||||
TiVoRandomSeedFunc(sqlite3_context *context, int argc, sqlite3_value **argv);
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user