mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-08-23 17:23:51 +08:00
811fd5086f
version: dragonpilot v2023.02.08 release for EON/C2
date: 2023-02-08T05:01:31
dp-dev(priv2) beta2 commit: f770882b7f
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);
|