e4d5c1ce36
This will allow to define symbols in options.c without all the dependencies of scrcpy.c.
12 lines
152 B
C
12 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
|