mirror of
https://github.com/Genymobile/scrcpy.git
synced 2026-04-21 01:33:36 +00:00
Improved manually with the help of neovim LSP warnings and iwyu:
iwyu -Ibuilddir/app/ -Iapp/src/ app/src/XXX.c
17 lines
375 B
C
17 lines
375 B
C
#ifndef SC_PROCESS_INTR_H
|
|
#define SC_PROCESS_INTR_H
|
|
|
|
#include "common.h"
|
|
|
|
#include "util/intr.h"
|
|
#include "util/process.h"
|
|
|
|
ssize_t
|
|
sc_pipe_read_intr(struct sc_intr *intr, sc_pid pid, sc_pipe pipe, char *data,
|
|
size_t len);
|
|
|
|
ssize_t
|
|
sc_pipe_read_all_intr(struct sc_intr *intr, sc_pid pid, sc_pipe pipe,
|
|
char *data, size_t len);
|
|
|
|
#endif
|