mirror of https://github.com/mpv-player/mpv
20 lines
383 B
C
20 lines
383 B
C
#include <stddef.h>
|
|
|
|
#include "input/input.h"
|
|
|
|
struct mp_ipc_ctx *mp_init_ipc(struct mp_client_api *client_api,
|
|
struct mpv_global *global)
|
|
{
|
|
return NULL;
|
|
}
|
|
|
|
bool mp_ipc_start_anon_client(struct mp_ipc_ctx *ctx, struct mpv_handle *h,
|
|
int out_fd[2])
|
|
{
|
|
return false;
|
|
}
|
|
|
|
void mp_uninit_ipc(struct mp_ipc_ctx *ctx)
|
|
{
|
|
}
|