mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-12 21:02:13 +08:00
8b44d6978d
date: 2024-02-21T23:02:42 master commit: 0b4d08fab8e35a264bc7383e878538f8083c33e5
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);
|