e3d4aa8c5d
Explicitly indicate, for each adb call, if stdout and stderr must be inherited. PR #2827 <https://github.com/Genymobile/scrcpy/pull/2827>
51 lines
1.2 KiB
C
51 lines
1.2 KiB
C
#ifndef SC_ADB_H
|
|
#define SC_ADB_H
|
|
|
|
#include "common.h"
|
|
|
|
#include <stdbool.h>
|
|
#include <inttypes.h>
|
|
|
|
#include "util/intr.h"
|
|
|
|
#define SC_ADB_NO_STDOUT (1 << 0)
|
|
#define SC_ADB_NO_STDERR (1 << 1)
|
|
|
|
sc_pid
|
|
adb_execute(const char *serial, const char *const adb_cmd[], size_t len,
|
|
unsigned flags);
|
|
|
|
bool
|
|
adb_forward(struct sc_intr *intr, const char *serial, uint16_t local_port,
|
|
const char *device_socket_name, unsigned flags);
|
|
|
|
bool
|
|
adb_forward_remove(struct sc_intr *intr, const char *serial,
|
|
uint16_t local_port, unsigned flags);
|
|
|
|
bool
|
|
adb_reverse(struct sc_intr *intr, const char *serial,
|
|
const char *device_socket_name, uint16_t local_port,
|
|
unsigned flags);
|
|
|
|
bool
|
|
adb_reverse_remove(struct sc_intr *intr, const char *serial,
|
|
const char *device_socket_name, unsigned flags);
|
|
|
|
bool
|
|
adb_push(struct sc_intr *intr, const char *serial, const char *local,
|
|
const char *remote, unsigned flags);
|
|
|
|
bool
|
|
adb_install(struct sc_intr *intr, const char *serial, const char *local,
|
|
unsigned flags);
|
|
|
|
/**
|
|
* Execute `adb get-serialno`
|
|
*
|
|
* Return the result, to be freed by the caller, or NULL on error.
|
|
*/
|
|
char *
|
|
adb_get_serialno(struct sc_intr *intr, unsigned flags);
|
|
|
|
#endif
|