Add an option to make scrcpy pause on exit.
Three behaviors are possible:
- always pause on exit:
--pause-on-exit
--pause-on-exit=true
- never pause on exit:
(no option)
--pause-on-exit=false
- pause when scrcpy returns with an error (a non-zero exit code):
--pause-on-exit=if-error
This is useful to prevent the terminal window from automatically
closing, so that error messages can be read.
Refs #3817 <https://github.com/Genymobile/scrcpy/pull/3817>
Refs #3822 <https://github.com/Genymobile/scrcpy/pull/3822>
PR #4130 <https://github.com/Genymobile/scrcpy/pull/4130>
35 lines
585 B
C
35 lines
585 B
C
#ifndef SCRCPY_CLI_H
|
|
#define SCRCPY_CLI_H
|
|
|
|
#include "common.h"
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "options.h"
|
|
|
|
enum sc_pause_on_exit {
|
|
SC_PAUSE_ON_EXIT_TRUE,
|
|
SC_PAUSE_ON_EXIT_FALSE,
|
|
SC_PAUSE_ON_EXIT_IF_ERROR,
|
|
};
|
|
|
|
struct scrcpy_cli_args {
|
|
struct scrcpy_options opts;
|
|
bool help;
|
|
bool version;
|
|
enum sc_pause_on_exit pause_on_exit;
|
|
};
|
|
|
|
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
|