a90ccbdf3b
A drag & drop always pushed the file to /sdcard/. Add an option to customize the target directory. Fixes <https://github.com/Genymobile/scrcpy/issues/659>
15 lines
281 B
C
15 lines
281 B
C
#ifndef DEVICE_H
|
|
#define DEVICE_H
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "common.h"
|
|
#include "net.h"
|
|
|
|
#define DEVICE_NAME_FIELD_LENGTH 64
|
|
|
|
// 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
|