Read registers from VB
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
#define RDBSERVER_CLIENT_H_
|
||||
|
||||
#include <stdbool.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <sys/types.h>
|
||||
|
||||
@@ -20,6 +21,8 @@ ssize_t rdb_client_read(RdbClient *self, char *buf, size_t len);
|
||||
void rdb_client_begin_packet(RdbClient *self);
|
||||
bool rdb_client_write_str(RdbClient *self, const char *str);
|
||||
bool rdb_client_write_str_hex(RdbClient *self, const char *str);
|
||||
bool rdb_client_write_i8_hex(RdbClient *self, uint8_t value);
|
||||
bool rdb_client_write_i32_hex(RdbClient *self, uint32_t value);
|
||||
int rdb_client_send_packet(RdbClient *self);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user