mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-16 14:52:15 +08:00
4012d181e1
date: 2024-03-17T10:14:38 master commit: 7e9a909e0e57ecb31df4c87c5b9a06b1204fd034
8 lines
255 B
C
8 lines
255 B
C
#pragma once
|
|
#include <cstddef>
|
|
|
|
int ipc_connect(const char* socket_path);
|
|
int ipc_bind(const char* socket_path);
|
|
int ipc_sendrecv_with_fds(bool send, int fd, void *buf, size_t buf_size, int* fds, int num_fds,
|
|
int *out_num_fds);
|