mirror of
https://github.com/tuxbox-neutrino/libstb-hal.git
synced 2025-08-27 07:23:11 +02:00
libeplayer3: c++ adjustments
This commit is contained in:
@@ -22,19 +22,18 @@ struct Context_s;
|
||||
typedef struct Context_s Context_t;
|
||||
|
||||
typedef struct Container_s {
|
||||
char *Name;
|
||||
int (*Command) (Context_t *, ContainerCmd_t, void *);
|
||||
char **Capabilities;
|
||||
|
||||
const char *Name;
|
||||
int (*Command) (Context_t *, ContainerCmd_t, const char *);
|
||||
const char **Capabilities;
|
||||
} Container_t;
|
||||
|
||||
|
||||
extern Container_t FFMPEGContainer;
|
||||
|
||||
typedef struct ContainerHandler_s {
|
||||
char *Name;
|
||||
const char *Name;
|
||||
Container_t *selectedContainer;
|
||||
int (*Command) (Context_t *, ContainerCmd_t, void *);
|
||||
int (*Command) (Context_t *, ContainerCmd_t, const char *);
|
||||
} ContainerHandler_t;
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user