blob: 609362e975fe5b4cac228b4d837c37645a6188f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* Simple program to grab images from VDR Recording
*
* Copyright(c) 2007-2010 Andreas Brachold
*
* This code is distributed under the terms and conditions of the
* GNU GENERAL PUBLIC LICENSE. See the file COPYING for details.
*
*/
#include <string>
int option(int argc, char *argv[], const char opt, bool bParam,
std::string & param, int n = 1);
|