2017-12-12 22:12:07 +08:00
|
|
|
#ifndef COMMAND_H
|
|
|
|
#define COMMAND_H
|
|
|
|
|
|
|
|
#include <inttypes.h>
|
2017-12-16 00:34:16 +08:00
|
|
|
#include <SDL2/SDL_stdinc.h>
|
2017-12-12 22:12:07 +08:00
|
|
|
#include <SDL2/SDL_platform.h>
|
|
|
|
|
|
|
|
// <https://stackoverflow.com/a/44383330/1987178>
|
|
|
|
#ifdef _WIN32
|
|
|
|
# ifdef _WIN64
|
|
|
|
# define PRIsizet PRIu64
|
|
|
|
# define PRIexitcode "lu"
|
|
|
|
# else
|
|
|
|
# define PRIsizet PRIu32
|
|
|
|
# define PRIexitcode "u"
|
|
|
|
# endif
|
|
|
|
#else
|
|
|
|
# define PRIsizet "zu"
|
|
|
|
# define PRIexitcode "d"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __WINDOWS__
|
|
|
|
# include <windows.h>
|
|
|
|
# define PROCESS_NONE NULL
|
|
|
|
typedef HANDLE process_t;
|
|
|
|
typedef DWORD exit_code_t;
|
|
|
|
#else
|
|
|
|
# include <sys/types.h>
|
|
|
|
# define PROCESS_NONE -1
|
|
|
|
typedef pid_t process_t;
|
|
|
|
typedef int exit_code_t;
|
|
|
|
#endif
|
|
|
|
# define NO_EXIT_CODE -1
|
|
|
|
|
|
|
|
process_t cmd_execute(const char *path, const char *const argv[]);
|
|
|
|
SDL_bool cmd_terminate(process_t pid);
|
|
|
|
SDL_bool cmd_simple_wait(process_t pid, exit_code_t *exit_code);
|
|
|
|
|
|
|
|
process_t adb_execute(const char *serial, const char *const adb_cmd[], int len);
|
|
|
|
process_t adb_forward(const char *serial, uint16_t local_port, const char *device_socket_name);
|
|
|
|
process_t adb_reverse(const char *serial, const char *device_socket_name, uint16_t local_port);
|
|
|
|
process_t adb_reverse_remove(const char *serial, const char *device_socket_name);
|
|
|
|
process_t adb_push(const char *serial, const char *local, const char *remote);
|
|
|
|
|
|
|
|
#endif
|