mirror of
https://github.com/mpv-player/mpv
synced 2024-12-22 14:52:43 +00:00
e2ab6b7f35
This is just a more convenient way to start IPC client scripts per mpv instance. Does not work on Windows, although it could if the subprocess and IPC parts are implemented (and I guess .exe/.bat suffixes are required). Also untested whether it builds on Windows. A lot of other things are untested too, so don't complain.
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)
|
|
{
|
|
}
|