blob: 01d81b158b3ac7fb81c07fd372383df5b0ac86dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* dvdswitch plugin for VDR (C++)
*
* (C) 2010 Andreas Brachold <vdr07 AT deltab de>
*
* This dvdswitch plugin is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as published
* by the Free Software Foundation, version 2 of the License.
*
* See the files README and COPYING for details.
*
*/
#ifndef __VOLNAME_DVDSWITCH_H
#define __VOLNAME_DVDSWITCH_H
int volname(const char* device, char* volname, size_t volsize);
#endif // __VOLNAME_DVDSWITCH_H
|