blob: 84dce1c773a944f8270189cc96aa66a84a2f8b5f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/*
* external-player.h
*/
#ifndef __EXTERNAL_PLAYER_H
#define __EXTERNAL_PLAYER_H
struct MP3ServiceData {
int result;
union {
const char *filename;
} data;
};
#endif //__EXTERNAL_PLAYER_H
|