Scrcpy is a C11 project. Use the C99 standard types instead of the
SDL-specific types:
SDL_bool -> bool
SintXX -> intXX_t
UintXX -> uintXX_t
17 lines
318 B
C
17 lines
318 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 *name, struct size *frame_size);
|
|
|
|
#endif
|