Rename screen -> scrcpy -> main

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()).
This commit is contained in:
Romain Vimont
2018-01-23 16:32:29 +01:00
parent 8984c1a7c4
commit 2c35220618
5 changed files with 592 additions and 592 deletions

8
app/src/scrcpy.h Normal file
View File

@@ -0,0 +1,8 @@
#ifndef SCREEN_H
#define SCREEN_H
#include <SDL2/SDL_stdinc.h>
SDL_bool scrcpy(const char *serial, Uint16 local_port);
#endif