1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-22 07:09:49 +00:00

input.c: Remove _st prefix from struct names

This commit is contained in:
Uoti Urpala 2008-04-30 06:30:34 +03:00
parent 431bf1f5b6
commit bde509648f

View File

@ -520,17 +520,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;