mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-18 21:26:07 +00:00
1f8ba1ca79
Ref: <https://github.com/Genymobile/scrcpy/issues/829> Suggested-by: Louis Kruger <louisk@gmail.com>
35 lines
719 B
C
35 lines
719 B
C
#ifndef DEVICEMSG_H
|
|
#define DEVICEMSG_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <unistd.h>
|
|
|
|
#include "config.h"
|
|
|
|
#define DEVICE_MSG_TEXT_MAX_LENGTH 4093
|
|
#define DEVICE_MSG_SERIALIZED_MAX_SIZE (3 + DEVICE_MSG_TEXT_MAX_LENGTH)
|
|
|
|
enum device_msg_type {
|
|
DEVICE_MSG_TYPE_CLIPBOARD,
|
|
};
|
|
|
|
struct device_msg {
|
|
enum device_msg_type type;
|
|
union {
|
|
struct {
|
|
char *text; // owned, to be freed by SDL_free()
|
|
} clipboard;
|
|
};
|
|
};
|
|
|
|
// return the number of bytes consumed (0 for no msg available, -1 on error)
|
|
ssize_t
|
|
device_msg_deserialize(const unsigned char *buf, size_t len,
|
|
struct device_msg *msg);
|
|
|
|
void
|
|
device_msg_destroy(struct device_msg *msg);
|
|
|
|
#endif
|