blob: 1f39d39ee573d6b0e1b3bf64e9d278ec47544e93 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* markad-standalone.h: A plugin for the Video Disk Recorder
*
* See the README file for copyright information and how to reach the author.
*
* $Id$
*/
#ifndef __markad_standalone_h_
#define __markad_standalone_h_
#include <syslog.h>
#include <stdio.h>
#include <stdarg.h>
#include <unistd.h>
#include <fcntl.h>
#include "demux.h"
#include "global.h"
#include "decoder.h"
#include "video.h"
int SysLogLevel=3;
#endif
|