mirror of
https://github.com/Genymobile/scrcpy.git
synced 2026-01-14 19:24:28 +01:00
Improved manually with the help of neovim LSP warnings and iwyu:
iwyu -Ibuilddir/app/ -Iapp/src/ app/src/XXX.c
23 lines
379 B
C
23 lines
379 B
C
#ifndef SCRCPY_H
|
|
#define SCRCPY_H
|
|
|
|
#include "common.h"
|
|
|
|
#include "options.h"
|
|
|
|
enum scrcpy_exit_code {
|
|
// Normal program termination
|
|
SCRCPY_EXIT_SUCCESS,
|
|
|
|
// No connection could be established
|
|
SCRCPY_EXIT_FAILURE,
|
|
|
|
// Device was disconnected while running
|
|
SCRCPY_EXIT_DISCONNECTED,
|
|
};
|
|
|
|
enum scrcpy_exit_code
|
|
scrcpy(struct scrcpy_options *options);
|
|
|
|
#endif
|