mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-27 07:23:11 +02:00
This imports libeplayer3 as of commit 9160371ccc6 (2012-02-02) git://gitorious.org/open-duckbox-project-sh4/tdt.git It would be better to use the original repo, but I need too many changes for now :-(
18 lines
326 B
C
18 lines
326 B
C
#ifndef COMMON_H_
|
|
#define COMMON_H_
|
|
|
|
#include "container.h"
|
|
#include "output.h"
|
|
#include "manager.h"
|
|
#include "playback.h"
|
|
#include <pthread.h>
|
|
|
|
typedef struct Context_s {
|
|
PlaybackHandler_t * playback;
|
|
ContainerHandler_t * container;
|
|
OutputHandler_t * output;
|
|
ManagerHandler_t * manager;
|
|
} Context_t;
|
|
|
|
#endif
|