Separate multi-words filenames by '_'

Rename foobar.ext to foo_bar.ext.

<https://github.com/Genymobile/scrcpy/pull/226#discussion_r209454865>
This commit is contained in:
Romain Vimont
2018-08-15 17:01:54 +02:00
parent f3f704d1ed
commit 536b31829a
26 changed files with 34 additions and 34 deletions

View File

@@ -1,9 +1,9 @@
#include "controlevent.h"
#include "control_event.h"
#include <SDL2/SDL_stdinc.h>
#include <string.h>
#include "lockutil.h"
#include "lock_util.h"
#include "log.h"
static inline void write16(Uint8 *buf, Uint16 value) {

View File

@@ -2,7 +2,7 @@
#include <SDL2/SDL_assert.h>
#include "config.h"
#include "lockutil.h"
#include "lock_util.h"
#include "log.h"
SDL_bool controller_init(struct controller *controller, socket_t video_socket) {

View File

@@ -1,7 +1,7 @@
#ifndef CONTROL_H
#define CONTROL_H
#include "controlevent.h"
#include "control_event.h"
#include <SDL2/SDL_mutex.h>
#include <SDL2/SDL_stdinc.h>

View File

@@ -3,7 +3,7 @@
#include <SDL2/SDL_stdinc.h>
#include <SDL2/SDL_events.h>
#include "controlevent.h"
#include "control_event.h"
struct complete_mouse_motion_event {
SDL_MouseMotionEvent *mouse_motion_event;

View File

@@ -9,7 +9,7 @@
#include "config.h"
#include "events.h"
#include "frames.h"
#include "lockutil.h"
#include "lock_util.h"
#include "log.h"
#define BUFSIZE 0x10000

View File

@@ -5,7 +5,7 @@
#include "config.h"
#include "command.h"
#include "device.h"
#include "lockutil.h"
#include "lock_util.h"
#include "log.h"
struct request {

View File

@@ -1,4 +1,4 @@
#include "fpscounter.h"
#include "fps_counter.h"
#include <SDL2/SDL_timer.h>

View File

@@ -6,7 +6,7 @@
#include <libavformat/avformat.h>
#include "config.h"
#include "lockutil.h"
#include "lock_util.h"
#include "log.h"
SDL_bool frames_init(struct frames *frames) {

View File

@@ -5,7 +5,7 @@
#include <SDL2/SDL_stdinc.h>
#include "config.h"
#include "fpscounter.h"
#include "fps_counter.h"
// forward declarations
typedef struct AVFrame AVFrame;

View File

@@ -1,7 +1,7 @@
#include "inputmanager.h"
#include "input_manager.h"
#include "convert.h"
#include "lockutil.h"
#include "lock_util.h"
#include "log.h"
// Convert window coordinates (as provided by SDL_GetMouseState() to renderer coordinates (as provided in SDL mouse events)

View File

@@ -3,7 +3,7 @@
#include "common.h"
#include "controller.h"
#include "fpscounter.h"
#include "fps_counter.h"
#include "frames.h"
#include "screen.h"

View File

@@ -15,14 +15,14 @@
#include "events.h"
#include "file_handler.h"
#include "frames.h"
#include "fpscounter.h"
#include "inputmanager.h"
#include "fps_counter.h"
#include "input_manager.h"
#include "log.h"
#include "lockutil.h"
#include "lock_util.h"
#include "net.h"
#include "screen.h"
#include "server.h"
#include "tinyxpm.h"
#include "tiny_xpm.h"
static struct server server = SERVER_INITIALIZER;
static struct screen screen = SCREEN_INITIALIZER;

View File

@@ -4,9 +4,9 @@
#include <string.h>
#include "icon.xpm"
#include "lockutil.h"
#include "lock_util.h"
#include "log.h"
#include "tinyxpm.h"
#include "tiny_xpm.h"
#define DISPLAY_MARGINS 96

View File

@@ -1,4 +1,4 @@
#include "strutil.h"
#include "str_util.h"
size_t xstrncpy(char *dest, const char *src, size_t n) {
size_t i;

View File

@@ -2,7 +2,7 @@
#include "config.h"
#include "log.h"
#include "strutil.h"
#include "str_util.h"
HANDLE cmd_execute(const char *path, const char *const argv[]) {
STARTUPINFO si;

View File

@@ -1,4 +1,4 @@
#include "tinyxpm.h"
#include "tiny_xpm.h"
#include <stdio.h>
#include <stdlib.h>