Files
scrcpy/app/src/cli.h
Romain Vimont a90b08ceb3 Customize shortcut modifier
Add --shortcut-mod, and use Alt as default modifier.

This paves a way to forward the Ctrl key to the device.
2020-07-17 17:23:00 +02:00

27 lines
428 B
C

#ifndef SCRCPY_CLI_H
#define SCRCPY_CLI_H
#include <stdbool.h>
#include "config.h"
#include "scrcpy.h"
struct scrcpy_cli_args {
struct scrcpy_options opts;
bool help;
bool version;
};
void
scrcpy_print_usage(const char *arg0);
bool
scrcpy_parse_args(struct scrcpy_cli_args *args, int argc, char *argv[]);
#ifdef SC_TEST
bool
sc_parse_shortcut_mods(const char *s, struct sc_shortcut_mods *mods);
#endif
#endif