mirror of https://github.com/mpv-player/mpv
Drop pointles _st suffix from struct mp_cmd_filter and mp_cmd_bind_section.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31246 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
495115f2f1
commit
72ba1c8fec
|
@ -541,17 +541,17 @@ typedef struct mp_input_fd {
|
||||||
int pos,size;
|
int pos,size;
|
||||||
} mp_input_fd_t;
|
} mp_input_fd_t;
|
||||||
|
|
||||||
typedef struct mp_cmd_filter_st mp_cmd_filter_t;
|
typedef struct mp_cmd_filter mp_cmd_filter_t;
|
||||||
|
|
||||||
struct mp_cmd_filter_st {
|
struct mp_cmd_filter {
|
||||||
mp_input_cmd_filter filter;
|
mp_input_cmd_filter filter;
|
||||||
void* ctx;
|
void* ctx;
|
||||||
mp_cmd_filter_t* next;
|
mp_cmd_filter_t* next;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef struct mp_cmd_bind_section_st mp_cmd_bind_section_t;
|
typedef struct mp_cmd_bind_section mp_cmd_bind_section_t;
|
||||||
|
|
||||||
struct mp_cmd_bind_section_st {
|
struct mp_cmd_bind_section {
|
||||||
mp_cmd_bind_t* cmd_binds;
|
mp_cmd_bind_t* cmd_binds;
|
||||||
char* section;
|
char* section;
|
||||||
mp_cmd_bind_section_t* next;
|
mp_cmd_bind_section_t* next;
|
||||||
|
|
Loading…
Reference in New Issue