blob: 890a1bb8295f1e7a2ee4dea4ceb1d097b11300e8 (
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
26
|
#ifndef __YAF_CONTROL_H
#define __YAF_CONTROL_H
#include "inputInterface.h"
#include "outputInterface.h"
#include "inputDecoder.h"
#include <sys/time.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
#include <kdemacros.h>
// prototypes
//extern "C" void control_xplayer();
KDE_EXPORT void yaf_control(InputInterface* input,
OutputInterface* output,
InputDecoder* decoder);
#endif
|