0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 03:52:22 +02:00
mpv/input/ipc-dummy.c

20 lines
383 B
C
Raw Normal View History

#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)
{
}