mirror of
https://github.com/Genymobile/scrcpy
synced 2025-02-13 02:50:10 +00:00
Use the same variable name in functions declaration and definition. Signed-off-by: Yu-Chen Lin <npes87184@gmail.com> Signed-off-by: Romain Vimont <rom@rom1v.com>
17 lines
319 B
C
17 lines
319 B
C
#ifndef DEVICE_H
|
|
#define DEVICE_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "common.h"
|
|
#include "net.h"
|
|
|
|
#define DEVICE_NAME_FIELD_LENGTH 64
|
|
#define DEVICE_SDCARD_PATH "/sdcard/"
|
|
|
|
// name must be at least DEVICE_NAME_FIELD_LENGTH bytes
|
|
bool
|
|
device_read_info(socket_t device_socket, char *device_name, struct size *size);
|
|
|
|
#endif
|