mirror of https://github.com/mpv-player/mpv
14 lines
239 B
C
14 lines
239 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;
|
||
|
}
|
||
|
|
||
|
void mp_uninit_ipc(struct mp_ipc_ctx *ctx)
|
||
|
{
|
||
|
}
|