scrcpy/app/src/scrcpy.h
Romain Vimont e4d5c1ce36 Move scrcpy option structs to options.h
This will allow to define symbols in options.c without all the
dependencies of scrcpy.c.
2021-10-27 18:43:47 +02:00

13 lines
152 B
C

#ifndef SCRCPY_H
#define SCRCPY_H
#include "common.h"
#include <stdbool.h>
#include "options.h"
bool
scrcpy(struct scrcpy_options *options);
#endif