diff options
author | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-09-20 15:25:39 +0000 |
---|---|---|
committer | lvw <lvw@e10066b5-e1e2-0310-b819-94efdf66514b> | 2004-09-20 15:25:39 +0000 |
commit | eb22852ae7bbd762fd5e6c0048c54f0fe45326fc (patch) | |
tree | bac8c8ac0cd5e7ef042bd23653002a6a2c826335 /gd_content_interface.c | |
parent | dc4959dfdf918f6cd7b448cd2102a97e29c82af7 (diff) | |
download | vdr-plugin-muggle-eb22852ae7bbd762fd5e6c0048c54f0fe45326fc.tar.gz vdr-plugin-muggle-eb22852ae7bbd762fd5e6c0048c54f0fe45326fc.tar.bz2 |
Code reviews regarding playlist handling.
git-svn-id: https://vdr-muggle.svn.sourceforge.net/svnroot/vdr-muggle/trunk/muggle-plugin@171 e10066b5-e1e2-0310-b819-94efdf66514b
Diffstat (limited to 'gd_content_interface.c')
-rw-r--r-- | gd_content_interface.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gd_content_interface.c b/gd_content_interface.c index 6c2f496..01e71b2 100644 --- a/gd_content_interface.c +++ b/gd_content_interface.c @@ -26,12 +26,17 @@ using namespace std; -#define GD_PLAYLIST_TYPE 0 // listtype for giant disc db +#define GD_PLAYLIST_TYPE 0 //< listtype for giant disc db // some dummies to keep the compiler happy #define DUMMY_CONDITION true // we use that as dummy condition to satisfy C++ syntax #define DUMMY +/*! + * \brief initialize a database used by Giantdisc + * + * \todo should be a static function in some Gd class + */ int GdInitDatabase( MYSQL *db ) { if( mysql_init(db) == NULL ) |