2c35220618
Rename scrcpy.c to main.c (this file handles the command line parsing), and screen.c to scrcpy.c (it exposes the entry point scrcpy()).
8 lines
129 B
C
8 lines
129 B
C
#ifndef SCREEN_H
|
|
#define SCREEN_H
|
|
|
|
#include <SDL2/SDL_stdinc.h>
|
|
|
|
SDL_bool scrcpy(const char *serial, Uint16 local_port);
|
|
|
|
#endif
|